From cf5134c6ebad95e5c801edadea891390e0251aa0 Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Mon, 25 Sep 2023 12:12:41 -0600 Subject: [PATCH] feat(main.rs): add app alias for apps command Signed-off-by: Vaughn Dice --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b00c993..8878de8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ const VERSION: &str = concat!( #[clap(propagate_version = true)] enum CloudCli { /// Manage applications deployed to Fermyon Cloud - #[clap(subcommand)] + #[clap(subcommand, alias = "app")] Apps(AppsCommand), /// Package and upload an application to the Fermyon Cloud. Deploy(DeployCommand),