Skip to content

Commit

Permalink
Fix SERIAL command line option
Browse files Browse the repository at this point in the history
The boolean type cause the following argument to be swallowed
  • Loading branch information
gnodet committed Dec 10, 2020
1 parent e19bd7c commit 80c93aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public enum Environment {
/** Stop all daemon instances registered in the registry specified by <code>mvnd.registry</code> */
STOP(null, null, null, OptionType.VOID, Flags.OPTIONAL, "--stop"),
/** Use one thread, no log buffering and the default project builder to behave like a standard maven */
SERIAL("mvnd.serial", null, Boolean.FALSE, OptionType.BOOLEAN, Flags.OPTIONAL, "--serial"),
SERIAL("mvnd.serial", null, Boolean.FALSE, OptionType.VOID, Flags.OPTIONAL, "--serial"),

//
// Log properties
Expand Down

0 comments on commit 80c93aa

Please sign in to comment.