Merge pull request #684 from vaikas-google/master

add alias for helm up for helm update
pull/693/head
Ville Aikas 8 years ago
commit 9fecf74800

@ -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() {

Loading…
Cancel
Save