ref(cmd): remove deprecated command

pull/3945/head
Adam Reese 8 years ago
parent 12a8baef64
commit 30a049d12e
No known key found for this signature in database
GPG Key ID: 06F35E60A7A18DD6

@ -117,9 +117,6 @@ func newRootCmd(args []string) *cobra.Command {
// Hidden documentation generator command: 'helm docs'
newDocsCmd(out),
// Deprecated
markDeprecated(newRepoUpdateCmd(out), "use 'helm repo update'\n"),
)
flags.Parse(args)
@ -145,11 +142,6 @@ func main() {
}
}
func markDeprecated(cmd *cobra.Command, notice string) *cobra.Command {
cmd.Deprecated = notice
return cmd
}
func setupConnection() error {
if settings.TillerHost == "" {
config, client, err := getKubeClient(settings.KubeContext)

Loading…
Cancel
Save