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
// ...and the "machete" command if ran as cargo subcommand.
if i == 1 && arg == "machete" {
continue;
}
Since your command accepts positional arguments, this will not allow me to run cargo-machette machette where machette is a directory but I'd have to know to run cargo-machette machette machette. Personally, I find it dubious to have a command be dual natured (run in either cargo or out) especially when accepting positional arguments.
The text was updated successfully, but these errors were encountered:
Since your command accepts positional arguments, this will not allow me to run
cargo-machette machette
wheremachette
is a directory but I'd have to know to runcargo-machette machette machette
. Personally, I find it dubious to have a command be dual natured (run in either cargo or out) especially when accepting positional arguments.The text was updated successfully, but these errors were encountered: