From de10a7456f41492815ef673da39ebf3dcbc1f282 Mon Sep 17 00:00:00 2001 From: Cosmin Cojocar Date: Mon, 30 Jul 2018 09:45:29 +0200 Subject: [PATCH] Fix the help message --- cmd/gosec/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gosec/main.go b/cmd/gosec/main.go index f62f968..3417a89 100644 --- a/cmd/gosec/main.go +++ b/cmd/gosec/main.go @@ -95,7 +95,7 @@ var ( flagScanVendor = flag.Bool("vendor", false, "Scan the vendor folder") // fail by severity - flagSeverity = flag.String("severity", "low", "Fail the build for issues with the given or higher severity. Valid options are: low, medium, high") + flagSeverity = flag.String("severity", "low", "Fail the scanning for issues with the given or higher severity. Valid options are: low, medium, high") logger *log.Logger )