We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related to #258 and #362:
This parser option should make the below test pass:
def cli = new CliBuilder() cli.b(args: 2, valueSeparator: ',', 'arguments') options = cli.parse(['-b1,2,3']) assert options.bs == ['1', '2'] | | | | | false | ['1', '2,3'] groovy.util.OptionAccessor@ba2f4ec
The text was updated successfully, but these errors were encountered:
[#363] API Change: Add parser option to limit the number of parts whe…
c653149
…n splitting to max arity, for compatibility with commons-cli.
No branches or pull requests
Related to #258 and #362:
This parser option should make the below test pass:
The text was updated successfully, but these errors were encountered: