Commit c5557b38 authored by Jim's avatar Jim

fix(tiller): make text punctuation consistent with helm help

Closes #1072
parent 70b29a47
...@@ -69,9 +69,9 @@ var rootCommand = &cobra.Command{ ...@@ -69,9 +69,9 @@ var rootCommand = &cobra.Command{
func main() { func main() {
pf := rootCommand.PersistentFlags() pf := rootCommand.PersistentFlags()
pf.StringVarP(&grpcAddr, "listen", "l", ":44134", "The address:port to listen on") pf.StringVarP(&grpcAddr, "listen", "l", ":44134", "address:port to listen on")
pf.StringVar(&store, "storage", storageConfigMap, "The storage driver to use. One of 'configmap' or 'memory'") pf.StringVar(&store, "storage", storageConfigMap, "storage driver to use. One of 'configmap' or 'memory'")
pf.BoolVar(&enableTracing, "trace", false, "Enable rpc tracing") pf.BoolVar(&enableTracing, "trace", false, "enable rpc tracing")
rootCommand.Execute() rootCommand.Execute()
} }
......
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