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
When showing the usage for a subcommand, clap only shows the subcommand name, not the command name before it. For instance, given a command command, and a subcommand sub, command help sub will show:
sub
Subcommand about string goes here.
USAGE:
sub [FLAGS] <arg>...
This should look like:
command sub
Subcommand about string goes here.
USAGE:
command sub [FLAGS] <arg>...
The text was updated successfully, but these errors were encountered:
When showing the usage for a subcommand, clap only shows the subcommand name, not the command name before it. For instance, given a command
command
, and a subcommandsub
,command help sub
will show:This should look like:
The text was updated successfully, but these errors were encountered: