Skip to content

Commit

Permalink
Fix for quarkusio#18391, changing the CLI options
Browse files Browse the repository at this point in the history
  • Loading branch information
tqvarnst committed Jul 6, 2021
1 parent 987c9b4 commit 83031d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class BuildOptions {
@CommandLine.Option(order = 5, names = { "--offline" }, description = "Work offline.", defaultValue = "false")
public boolean offline = false;

@CommandLine.Option(order = 6, names = { "--tests" }, description = "Run tests.", negatable = true)
@CommandLine.Option(order = 6, names = { "--skip-tests" }, description = "Skip tests.")
public boolean runTests = true;

public boolean skipTests() {
Expand Down

0 comments on commit 83031d2

Please sign in to comment.