-
Notifications
You must be signed in to change notification settings - Fork 360
Cli options after subcommands #2597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
…Subcommand' into feature/cliGlobalParametersAfterSubcommand
|
|
Add complete e2e test testing this |
Kr0nox
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blocker for the missing test
|
|



Allows global cli options to be specified after subcommands. This makes
jplag path/to/data -t 3 java,jplag -l java path/to/data -t 3andjplag java path/to/data -t 3all equivalent.This makes printing the help more complex, since the global options have to be suppressed in the help text for subcommands manually.
This addresses #2243 and #2222