Commit f6db4108 authored by Adam Reese's avatar Adam Reese

Merge pull request #707 from adamreese/master

fix(cmd): fix init command description
parents b243a86f f2e6a020
...@@ -10,7 +10,6 @@ import ( ...@@ -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() { ...@@ -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,
} }
......
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