Skip to content

Commit

Permalink
fix: Show proper syntax for --store option in help output (fixes #613)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Sep 27, 2024
1 parent 78b530c commit cac574d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class OutputOptionsArgGroup implements IOutputOptions {
@Option(names = {"-o", "--output"}, order=1, converter = OutputFormatConfigConverter.class, completionCandidates = OutputFormatIterable.class, paramLabel = "format[=<options>]")
@Getter private OutputFormatConfig outputFormatConfig;

@Option(names = {"--store"}, order=1, converter = VariableStoreConfigConverter.class, paramLabel = "variableName[=<propertyNames>]")
@Option(names = {"--store"}, order=1, converter = VariableStoreConfigConverter.class, paramLabel = "variableName[:<propertyNames>]")
@Getter private VariableStoreConfig variableStoreConfig;

@Option(names = {"--to-file"}, order=7)
Expand Down

0 comments on commit cac574d

Please sign in to comment.