diff --git a/leo/main.rs b/leo/main.rs index d67a1af4b4..25f54a67d8 100644 --- a/leo/main.rs +++ b/leo/main.rs @@ -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!(), } }