Skip to content

Commit 71cf472

Browse files
ruslanyssnicoll
authored andcommitted
Remove duplicate -l option for init command
See gh-14460
1 parent 24eefcc commit 71cf472

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/InitCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ protected void options() {
127127
this.target = option(Arrays.asList("target"), "URL of the service to use")
128128
.withRequiredArg()
129129
.defaultsTo(ProjectGenerationRequest.DEFAULT_SERVICE_URL);
130-
this.listCapabilities = option(Arrays.asList("list", "l"),
130+
this.listCapabilities = option(Arrays.asList("list"),
131131
"List the capabilities of the service. Use it to discover the "
132132
+ "dependencies and the types that are available");
133133
projectGenerationOptions();

0 commit comments

Comments
 (0)