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
{{ message }}
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
In some libs, like argparse, this prints the complete help message, as if you used job -h. With docopt-rs, it does print the usage message, but doesn't actually care about the -h. It would print the same thing with a non-existing parameter.
Invalid arguments.
Usage:
job ...
tl;rd it would be nice to print the whole help message with -h, even if there are other args.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When calling a binary, some users forget how some arguments work and simply add a
-h
to see the help again, without removing all parameters.In some libs, like argparse, this prints the complete help message, as if you used
job -h
. With docopt-rs, it does print the usage message, but doesn't actually care about the-h
. It would print the same thing with a non-existing parameter.tl;rd it would be nice to print the whole help message with
-h
, even if there are other args.The text was updated successfully, but these errors were encountered: