fix(helm): make 'helm help' text punctuation consistent

Closes #1301
pull/1325/head
Matt Butcher 9 years ago
parent 6173e5b40a
commit 7c096fb2c2

@ -58,9 +58,9 @@ Common actions from this point include:
- helm list: list releases of charts - helm list: list releases of charts
Environment: Environment:
$HELM_HOME Set an alternative location for Helm files. By default, these are stored in ~/.helm $HELM_HOME set an alternative location for Helm files. By default, these are stored in ~/.helm
$HELM_HOST Set an alternative Tiller host. The format is host:port. $HELM_HOST set an alternative Tiller host. The format is host:port
$KUBECONFIG Set an alternate Kubernetes configuration file (default: "~/.kube/config"). $KUBECONFIG set an alternate Kubernetes configuration file (default "~/.kube/config")
` `
func newRootCmd(out io.Writer) *cobra.Command { func newRootCmd(out io.Writer) *cobra.Command {
@ -79,8 +79,8 @@ func newRootCmd(out io.Writer) *cobra.Command {
} }
thost := os.Getenv(hostEnvVar) thost := os.Getenv(hostEnvVar)
p := cmd.PersistentFlags() p := cmd.PersistentFlags()
p.StringVar(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME.") p.StringVar(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME")
p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST.") p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST")
p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output") p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output")
rup := newRepoUpdateCmd(out) rup := newRepoUpdateCmd(out)

Loading…
Cancel
Save