You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just having List<String> as an option type, parser wrongly results its value to be just first element if for example --arg one two is used. We should get list of both values.
Behaviour should be same as with String[] which is working fine.
The text was updated successfully, but these errors were encountered:
- Handle any option collection type so that list is generated for
values, this then works well when actual type conversions happen.
- Backport #630
- Fixes#631
Just having
List<String>
as an option type, parser wrongly results its value to be just first element if for example--arg one two
is used. We should get list of both values.Behaviour should be same as with
String[]
which is working fine.The text was updated successfully, but these errors were encountered: