Commit 8d410365 authored by Matt Butcher's avatar Matt Butcher

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

parent 768d1fbd
......@@ -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{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment