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
The code that looks for --help in env.args()[1] is in lib.rs in the run function is faulty: when run as cargo build-all-features --help the args vector will look like so:
The code that looks for
--help
inenv.args()[1]
is in lib.rs in therun
function is faulty: when run ascargo build-all-features --help
the args vector will look like so:That is, arg0 is the binary, arg1 is the subcommand name, arg2 is the first argument.
The text was updated successfully, but these errors were encountered: