Skip to content

Commit

Permalink
fix(helm): make 'helm help' text punctuation consistent
Browse files Browse the repository at this point in the history
Closes #1301
  • Loading branch information
technosophos committed Oct 10, 2016
1 parent 6173e5b commit 7c096fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ Common actions from this point include:
- helm list: list releases of charts
Environment:
$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.
$KUBECONFIG Set an alternate Kubernetes configuration file (default: "~/.kube/config").
$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
$KUBECONFIG set an alternate Kubernetes configuration file (default "~/.kube/config")
`

func newRootCmd(out io.Writer) *cobra.Command {
Expand All @@ -79,8 +79,8 @@ func newRootCmd(out io.Writer) *cobra.Command {
}
thost := os.Getenv(hostEnvVar)
p := cmd.PersistentFlags()
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(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME")
p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST")
p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output")

rup := newRepoUpdateCmd(out)
Expand Down

0 comments on commit 7c096fb

Please sign in to comment.