Skip to content

Commit

Permalink
fix(tiller): make text punctuation consistent with helm help
Browse files Browse the repository at this point in the history
Closes #1072
  • Loading branch information
poopoothegorilla committed Oct 15, 2016
1 parent 70b29a4 commit c5557b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/tiller/tiller.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ var rootCommand = &cobra.Command{

func main() {
pf := rootCommand.PersistentFlags()
pf.StringVarP(&grpcAddr, "listen", "l", ":44134", "The address:port to listen on")
pf.StringVar(&store, "storage", storageConfigMap, "The storage driver to use. One of 'configmap' or 'memory'")
pf.BoolVar(&enableTracing, "trace", false, "Enable rpc tracing")
pf.StringVarP(&grpcAddr, "listen", "l", ":44134", "address:port to listen on")
pf.StringVar(&store, "storage", storageConfigMap, "storage driver to use. One of 'configmap' or 'memory'")
pf.BoolVar(&enableTracing, "trace", false, "enable rpc tracing")
rootCommand.Execute()
}

Expand Down

0 comments on commit c5557b3

Please sign in to comment.