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.
Currently picocli gives error for this:
def cli = new CliBuilder() cli.a(args: 2, valueSeparator: ',' as char, 'arguments') def options = cli.parse(['-a', '1,2'])
Gives error "error: option '--arg' at index 0 (PARAM) requires at least 2 values, but only 1 were specified: [1,2]"
Add option to split first before verifying arity.
The text was updated successfully, but these errors were encountered:
Closing: will not provide explicit API for this, but semantics will be included in #363 ParserSpec.limitSplit.
ParserSpec.limitSplit
Sorry, something went wrong.
No branches or pull requests
Related to #258.
Currently picocli gives error for this:
Gives error "error: option '--arg' at index 0 (PARAM) requires at least 2 values, but only 1 were specified: [1,2]"
Add option to split first before verifying arity.
The text was updated successfully, but these errors were encountered: