From 46f36dc7abfaad292a18e63caa0af80d4f3b98fd Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Sat, 29 Mar 2014 05:26:07 -0400 Subject: [PATCH] updated cli help to indicate wild cards can be used to limit scan to specific file extensions Former-commit-id: 1369c129ee4a774ce22fda28a4e74468b578da40 --- .../src/main/java/org/owasp/dependencycheck/cli/CliParser.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/cli/CliParser.java b/dependency-check-cli/src/main/java/org/owasp/dependencycheck/cli/CliParser.java index 3374d0deb..5bdc6a97d 100644 --- a/dependency-check-cli/src/main/java/org/owasp/dependencycheck/cli/CliParser.java +++ b/dependency-check-cli/src/main/java/org/owasp/dependencycheck/cli/CliParser.java @@ -179,7 +179,8 @@ public final class CliParser { .create(ArgumentName.APP_NAME_SHORT); final Option path = OptionBuilder.withArgName("path").hasArg().withLongOpt(ArgumentName.SCAN) - .withDescription("The path to scan - this option can be specified multiple times.") + .withDescription("The path to scan - this option can be specified multiple times. To limit the scan" + + " to specific file types *.[ext] can be added to the end of the path.") .create(ArgumentName.SCAN_SHORT); final Option props = OptionBuilder.withArgName("file").hasArg().withLongOpt(ArgumentName.PROP)