Merge pull request #831 from technosophos/fix/678-alias-rm-remove

fix(helm): add 'helm repo rm' alias
pull/837/head
Matt Butcher 9 years ago committed by GitHub
commit 3e480723a1

@ -39,9 +39,10 @@ var repoListCmd = &cobra.Command{
} }
var repoRemoveCmd = &cobra.Command{ var repoRemoveCmd = &cobra.Command{
Use: "remove [flags] [NAME]", Use: "remove [flags] [NAME]",
Short: "remove a chart repository", Aliases: []string{"rm"},
RunE: runRepoRemove, Short: "remove a chart repository",
RunE: runRepoRemove,
} }
var repoIndexCmd = &cobra.Command{ var repoIndexCmd = &cobra.Command{

Loading…
Cancel
Save