From 4874f8bad99f42f13d60c361cb2a85d82c22877f Mon Sep 17 00:00:00 2001 From: Abhinav Date: Tue, 17 Mar 2026 15:34:02 +1300 Subject: [PATCH] Corrects create-deployment help message. The help message for the creation of a deployment shows the use of an invalid column. This small change corrects this issue. --- commands/apps.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/apps.go b/commands/apps.go index 662365a86..56921959b 100644 --- a/commands/apps.go +++ b/commands/apps.go @@ -159,7 +159,7 @@ This permanently deletes the app and all of its associated deployments.`, AddBoolFlag(deploymentCreate, doctl.ArgAppForceRebuild, "", false, "Force a re-build even if a previous build is eligible for reuse.") AddBoolFlag(deploymentCreate, doctl.ArgCommandWait, "", false, "Boolean that specifies whether to wait for the deployment to complete before allowing further terminal input. This can be helpful for scripting.") - deploymentCreate.Example = `The following example creates a deployment for an app with the ID ` + "`" + `f81d4fae-7dec-11d0-a765-00a0c91e6bf6` + "`" + `. Additionally, the command returns the app's ID and status: doctl apps create-deployment f81d4fae-7dec-11d0-a765-00a0c91e6bf6 --format ID,Status` + deploymentCreate.Example = `The following example creates a deployment for an app with the ID ` + "`" + `f81d4fae-7dec-11d0-a765-00a0c91e6bf6` + "`" + `. Additionally, the command returns the app's ID and deployment Created At UTC timestamp: doctl apps create-deployment f81d4fae-7dec-11d0-a765-00a0c91e6bf6 --format ID,Created` getDeployment := CmdBuilder( cmd,