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

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

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

Loading…
Cancel
Save