From 87c7a32ffe36181930380a0f40cc07ca3f2cb995 Mon Sep 17 00:00:00 2001 From: Prachi Pendse Date: Fri, 3 Jul 2020 11:43:17 -0400 Subject: [PATCH] Drop grep invert-match shorthand flag to resolve conflict with log level verbosity --- cmd/config/internal/commands/grep.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/config/internal/commands/grep.go b/cmd/config/internal/commands/grep.go index d420d19ad..cc430d810 100644 --- a/cmd/config/internal/commands/grep.go +++ b/cmd/config/internal/commands/grep.go @@ -31,8 +31,8 @@ func GetGrepRunner(name string) *GrepRunner { "also print resources from subpackages.") c.Flags().BoolVar(&r.KeepAnnotations, "annotate", true, "annotate resources with their file origins.") - c.Flags().BoolVarP(&r.InvertMatch, "invert-match", "v", false, - " Selected Resources are those not matching any of the specified patterns..") + c.Flags().BoolVarP(&r.InvertMatch, "invert-match", "", false, + "Selected Resources are those not matching any of the specified patterns..") r.Command = c return r