Skip to content

Commit

Permalink
fix: correct apiKey CLI arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Oct 16, 2023
1 parent 311f034 commit 8283c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/org/owasp/dependencycheck/CliParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ private void addStandardOptions(final Options options) {
.addOptionGroup(newOptionGroup(newOptionWithArg(ARGUMENT.SUPPRESSION_FILES, "file",
"The file path to the suppression XML file. This can be specified more then once to utilize multiple suppression files")))
.addOption(newOption(ARGUMENT.EXPERIMENTAL, "Enables the experimental analyzers."))
.addOption(newOption(ARGUMENT.NVD_API_KEY, "The API Key to access the NVD API."))
.addOption(newOptionWithArg(ARGUMENT.NVD_API_KEY, "apiKey", "The API Key to access the NVD API."))
.addOption(newOptionWithArg(ARGUMENT.FAIL_ON_CVSS, "score",
"Specifies if the build should be failed if a CVSS score above a specified level is identified. The default is 11; "
+ "since the CVSS scores are 0-10, by default the build will never fail."))
Expand Down

0 comments on commit 8283c81

Please sign in to comment.