Repository: stratos Updated Branches: refs/heads/4.0.0 56da2fd6e -> 67b8e7974
fixing https://issues.apache.org/jira/browse/STRATOS-650 Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/67b8e797 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/67b8e797 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/67b8e797 Branch: refs/heads/4.0.0 Commit: 67b8e7974bd2c6738279b458f515debd545f7f3a Parents: 56da2fd Author: Chris Snow <[email protected]> Authored: Sun May 11 06:01:55 2014 +0000 Committer: Chris Snow <[email protected]> Committed: Mon Jun 30 20:52:26 2014 +0000 ---------------------------------------------------------------------- .../src/main/java/org/apache/stratos/cli/StratosApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/67b8e797/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java index 8a888ee..41a6635 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java @@ -279,7 +279,7 @@ public class StratosApplication extends CommandLineApplication<StratosCommandCon allCommandOptions.addOption((Option) o); } - commandLine = parser.parse(allCommandOptions, args); + commandLine = parser.parse(options, args, true); remainingArgs = commandLine.getArgs(); if (remainingArgs != null && remainingArgs.length > 0) { // Get command action
