commandline:
option variableA, string, "var", "v", "default"
# none of the following work
executable --var:
# out: Missing value for option 'var'
executable --var=
# out: Missing value for option 'var'
executable --var ""
# out: Couldn't convert '' to string
There should only be an error if the user hasn't explicitly given a blank value, like the following
executable --var
# out: Missing value for option 'var'
commandline: option variableA, string, "var", "v", "default"There should only be an error if the user hasn't explicitly given a blank value, like the following
executable --var # out: Missing value for option 'var'