Open
Description
If my parameter requires an argument, I would like an error to be thrown if that argument is not supplied.
I tried detecting this in the callback, but the callback never gets called if the argument is not supplied. Essentially it treats it as if the parameter was never supplied.
i.e.,
If the 't' parameter requires a numeric value and should be called like: myapp.exe -t 5, but
myapp.exe -t
is the same as
myapp.exe
.
This can lead to some unexpected behavior.