Change order

This commit is contained in:
Sergey Isaev 2020-08-07 12:33:34 +03:00
parent 3b81e6a219
commit d584810b1d

View File

@ -30,10 +30,10 @@ fn main() -> Result<(), CLIError> {
SetupCommand::new().display_order(7),
ProveCommand::new().display_order(8),
RunCommand::new().display_order(9),
PublishCommand::new().display_order(10),
DeployCommand::new().display_order(11),
CleanCommand::new().display_order(12),
LoginCommand::new().display_order(13),
LoginCommand::new().display_order(10),
PublishCommand::new().display_order(11),
DeployCommand::new().display_order(12),
CleanCommand::new().display_order(13),
])
.set_term_width(0)
.get_matches();
@ -49,10 +49,10 @@ fn main() -> Result<(), CLIError> {
("setup", Some(arguments)) => SetupCommand::process(arguments),
("prove", Some(arguments)) => ProveCommand::process(arguments),
("run", Some(arguments)) => RunCommand::process(arguments),
("login", Some(arguments)) => LoginCommand::process(arguments),
("publish", Some(arguments)) => PublishCommand::process(arguments),
("deploy", Some(arguments)) => DeployCommand::process(arguments),
("clean", Some(arguments)) => CleanCommand::process(arguments),
("login", Some(arguments)) => LoginCommand::process(arguments),
_ => unreachable!(),
}
}