From 85d9613cf30641de1812d655e3a1b7aca829a022 Mon Sep 17 00:00:00 2001 From: vaikas-google Date: Tue, 10 May 2016 14:06:52 -0700 Subject: [PATCH] add alias for helm up for helm update --- cmd/helm/update.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/helm/update.go b/cmd/helm/update.go index 4528d8f09..65843deef 100644 --- a/cmd/helm/update.go +++ b/cmd/helm/update.go @@ -18,9 +18,10 @@ import ( var verboseUpdate bool var updateCommand = &cobra.Command{ - Use: "update", - Short: "Update information on available charts in the chart repositories.", - RunE: runUpdate, + Use: "update", + Aliases: []string{"up"}, + Short: "Update information on available charts in the chart repositories.", + RunE: runUpdate, } func init() {