| | defaultValue = "false" |
| | ) |
| | - private Boolean mConcatenate; |
| | + private boolean mConcatenate; |
| | |
| | @CommandLine.Option( |
| | - names = {"--autoclean"}, |
| | + names = {"--keep-files"}, |
| | description = |
| | - "Delete temporary build files (${DEFAULT-VALUE})", |
| | - defaultValue = "true" |
| | + "Retain temporary build files (${DEFAULT-VALUE})", |
| | + defaultValue = "false" |
| | ) |
| | - private boolean mAutoClean; |
| | + private boolean mKeepFiles; |
| | |
| | @CommandLine.Option( |
 |
| | .with( Mutator::setSigilEnded, () -> mSigilEnded ) |
| | .with( Mutator::setCurlQuotes, () -> mCurlQuotes ) |
| | - .with( Mutator::setAutoClean, () -> mAutoClean ) |
| | + .with( Mutator::setAutoClean, () -> !mKeepFiles ) |
| | .build(); |
| | } |