diff options
author | Ruud Kamphuis <[email protected]> | 2018-10-05 12:23:21 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-10-05 12:23:21 +0200 |
commit | baff0bfeb3dfdbd4ddbe07d27ce3603cab5b0831 (patch) | |
tree | 34709f87c0d223e26890ae9fa8ab49201158dc23 /cmd | |
parent | d46f4fc763e987dcc623b7be00436c79c3cf4551 (diff) |
Verbose flag should be lowercase
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/cmd/root.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/rr/cmd/root.go b/cmd/rr/cmd/root.go index e71ce0c4..15a004e0 100644 --- a/cmd/rr/cmd/root.go +++ b/cmd/rr/cmd/root.go @@ -89,7 +89,7 @@ func Execute() { } func init() { - CLI.PersistentFlags().BoolVarP(&Verbose, "Verbose", "v", false, "Verbose output") + CLI.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "Verbose output") CLI.PersistentFlags().BoolVarP(&Debug, "debug", "d", false, "debug mode") CLI.PersistentFlags().StringVarP(&cfgFile, "config", "c", "", "config file (default is .rr.yaml)") |