fix(helm): add 'helm repo rm' alias

pull/831/head
Matt Butcher 8 years ago
parent 768d1fbdeb
commit 8d410365a0

@ -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