Merge pull request #707 from adamreese/master

fix(cmd): fix init command description
pull/708/head
Adam Reese 9 years ago
commit f6db4108ae

@ -10,7 +10,6 @@ import (
"google.golang.org/grpc" "google.golang.org/grpc"
) )
var stdout = os.Stdout
var helmHome string var helmHome string
// flagVerbose is a signal that the user wants additional output. // flagVerbose is a signal that the user wants additional output.

@ -30,7 +30,7 @@ func init() {
var initCmd = &cobra.Command{ var initCmd = &cobra.Command{
Use: "init", Use: "init",
Short: "Initialize Helm on both client and server.", Short: "Initialize Helm on both client and server.",
Long: installDesc, Long: initDesc,
RunE: runInit, RunE: runInit,
} }

Loading…
Cancel
Save