fix(args): package subcommands order

This commit is contained in:
steven-omaha
2023-05-15 13:28:31 +02:00
parent 06cfbc792b
commit aa9cfb164e
+1 -1
View File
@@ -131,7 +131,7 @@ fn get_package_cmd() -> Command {
.about("manage packages") .about("manage packages")
.visible_alias("p") .visible_alias("p")
.subcommand_required(true) .subcommand_required(true)
.subcommands([clean, review, unmanaged, search, sync]) .subcommands([clean, review, search, sync, unmanaged])
} }
fn build_noconfirm_arg() -> Arg { fn build_noconfirm_arg() -> Arg {