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
$ ./target/debug/clap-test --print hello
error: The following required arguments were not supplied:
USAGE:
clap-test [FLAGS] --print <something>...
For more information try --help
Which required arguments is it complaining about?
The help text looks roughly correct:
$ ./target/debug/clap-test --help
clap-test
USAGE:
clap-test [FLAGS] --print <something>...
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--print <something>... Print stuff
Strange, I'll look into this. I think I know where the issue is, and is related to the major refactor we just had. This should be an easy fix, thanks for taking the time to file this! 👍
Maybe I'm missing something, but I can't get multi-valued options working.
which outputs:
Which required arguments is it complaining about?
The help text looks roughly correct:
Full repro project here: https://github.com/mgalgs/clap-test
The text was updated successfully, but these errors were encountered: