Remove duplicate -l option for init command

See gh-14460
This commit is contained in:
Ruslan Molchanov 2018-09-13 15:09:18 +03:00 committed by Stephane Nicoll
parent 24eefcc1c6
commit 71cf472116
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public class InitCommand extends OptionParsingCommand {
this.target = option(Arrays.asList("target"), "URL of the service to use")
.withRequiredArg()
.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 "
+ "dependencies and the types that are available");
projectGenerationOptions();