Commit 71cf4721 authored by Ruslan Molchanov's avatar Ruslan Molchanov Committed by Stephane Nicoll

Remove duplicate -l option for init command

See gh-14460
parent 24eefcc1
...@@ -127,7 +127,7 @@ public class InitCommand extends OptionParsingCommand { ...@@ -127,7 +127,7 @@ public class InitCommand extends OptionParsingCommand {
this.target = option(Arrays.asList("target"), "URL of the service to use") this.target = option(Arrays.asList("target"), "URL of the service to use")
.withRequiredArg() .withRequiredArg()
.defaultsTo(ProjectGenerationRequest.DEFAULT_SERVICE_URL); .defaultsTo(ProjectGenerationRequest.DEFAULT_SERVICE_URL);
this.listCapabilities = option(Arrays.asList("list", "l"), this.listCapabilities = option(Arrays.asList("list"),
"List the capabilities of the service. Use it to discover the " "List the capabilities of the service. Use it to discover the "
+ "dependencies and the types that are available"); + "dependencies and the types that are available");
projectGenerationOptions(); projectGenerationOptions();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment