Skip to content

Commit

Permalink
Merge pull request quarkusio#36817 from rsvoboda/DurationReport.fix
Browse files Browse the repository at this point in the history
ModuleBuildDurationReport: Fix help message for sort
  • Loading branch information
gsmet authored Nov 6, 2023
2 parents d09a3a1 + fd86790 commit 1e5a54e
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 1e5a54e

Please sign in to comment.