From a80599413c44bee0a6f03e1161182cd96ca5ec0b Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Sat, 9 May 2020 05:14:26 +0200 Subject: [PATCH] improve params description --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index da5e4f5..0f59306 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -49,7 +49,7 @@ var rootCmd = &cobra.Command{ func init() { rootCmd.PersistentFlags().StringSliceVarP(&verbose, "verbose", "v", []string{}, "Verbose logging for specific components") - rootCmd.PersistentFlags().StringVar(&conf, "conf", "config.json", "Path to config") + rootCmd.PersistentFlags().StringVar(&conf, "conf", "config.json", "Path to config. Use 'none' to disable") } // Execute adds all child commands to the root command and sets flags appropriately.