Skip to content

Commit

Permalink
Fix help message for sort
Browse files Browse the repository at this point in the history
  • Loading branch information
rsvoboda committed Nov 1, 2023
1 parent e6423a4 commit fd86790
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/ModuleBuildDurationReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ public class ModuleBuildDurationReport implements Runnable {
required = true)
private String logFilePath;

@CommandLine.Option(names = { "-s",
"--sort" }, description = "Sort order"
+ "%Possible values: ${COMPLETION-CANDIDATES}", defaultValue = "execution")
@CommandLine.Option(
names = { "-s", "--sort" },
description = "Sort order"
+ "%nPossible values: ${COMPLETION-CANDIDATES}",
defaultValue = "execution")
private Sort sort;

public static void main(String... args) {
Expand Down

0 comments on commit fd86790

Please sign in to comment.