From b3315a3fb436ca0546da535e5ec32679c19309cb Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 24 Mar 2016 17:46:39 -0600 Subject: [PATCH] fix(cli): change deployment delete to remove This is for consistency. Other commands use 'remove,rm' as removal verbs. Example: 'helm repo rm' --- cmd/helm/deployment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/deployment.go b/cmd/helm/deployment.go index dd83734b3..a2975bb18 100644 --- a/cmd/helm/deployment.go +++ b/cmd/helm/deployment.go @@ -51,8 +51,8 @@ func deploymentCommands() cli.Command { ArgsUsage: "DEPLOYMENT", }, { - Name: "delete", - Aliases: []string{"del"}, + Name: "remove", + Aliases: []string{"rm"}, Usage: "Deletes the named deployment(s).", ArgsUsage: "DEPLOYMENT [DEPLOYMENT [...]]", Action: func(c *cli.Context) { run(c, deleteDeployment) },