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
If the user specifies invalid arguments and --help, CLI11 produces only a help message and no error message. I would expect an error message and then the help. Just like this:
$ git push --help --invalidasdasdasd
error: unknown option `invalidasdasdasd'
usage: git help [-a|--all] [--[no-]verbose] [--[no-]external-commands] [--[no-]aliases]
... more of help ...
Is there an option to enable this?
The text was updated successfully, but these errors were encountered:
In the current error handling mechanism help takes precedence. Not doing it this way would cause all sorts of other problems. We are starting to explore potential options to move away from exceptions in the error handling which potentially could enable something like this. See #984
If the user specifies invalid arguments and
--help
, CLI11 produces only a help message and no error message. I would expect an error message and then the help. Just like this:Is there an option to enable this?
The text was updated successfully, but these errors were encountered: