From f2666d4a30f7e0e75c10de3ab903be33b15b865f 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: 1c034ba00859bc3140ca750c35bd1fc7f7b6d38d --- .../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)