From 0bb2f61149b18a2db097dd8adbb9fb3e1cacb9c2 Mon Sep 17 00:00:00 2001 From: Ayush Jha Date: Mon, 2 Dec 2024 11:13:20 +0545 Subject: [PATCH] fix: rephrase the description for `--no-persist-id` it currently says app-version ID but actually the app-id is stored. So the description is misleading. --- lib/cli/src/commands/app/deploy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/src/commands/app/deploy.rs b/lib/cli/src/commands/app/deploy.rs index fda80cb8009..6a950ee9e96 100644 --- a/lib/cli/src/commands/app/deploy.rs +++ b/lib/cli/src/commands/app/deploy.rs @@ -65,7 +65,7 @@ pub struct CmdAppDeploy { #[clap(long)] pub no_default: bool, - /// Do not persist the app version ID in the app.yaml. + /// Do not persist the app ID under `app_id` field in app.yaml. #[clap(long)] pub no_persist_id: bool,