From ca9ab8a13ba91eecd2c86c5ef277c71df73e51e1 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Fri, 17 Dec 2021 10:35:21 +0100 Subject: [PATCH] Set all help message to lower case --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c159a92..30b26f1 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ func main() { flag.StringVar(&ComposeFile, "compose", ComposeFile, "set the compose file to parse") flag.StringVar(&AppName, "appname", helm.GetProjectName(), "set the helm chart app name") flag.StringVar(&AppVersion, "appversion", AppVersion, "set the chart appVersion") - version := flag.Bool("version", false, "Show version and exit") + version := flag.Bool("version", false, "show version and exit") force := flag.Bool("force", false, "force the removal of the chart-dir") flag.Parse()