Commit 3e480723 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

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

fix(helm): add 'helm repo rm' alias
parents fda80296 8d410365
......@@ -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