From 91f571887ce664d32792e2d09db937135ba0f1d7 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Thu, 15 Aug 2019 21:44:56 -0400 Subject: [PATCH] Make callers type out all of --strict --- pkg/commands/options/strict.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/commands/options/strict.go b/pkg/commands/options/strict.go index 6b8c9652..bdc528c6 100644 --- a/pkg/commands/options/strict.go +++ b/pkg/commands/options/strict.go @@ -24,6 +24,6 @@ type StrictOptions struct { } func AddStrictArg(cmd *cobra.Command, so *StrictOptions) { - cmd.Flags().BoolVarP(&so.Strict, "strict", "S", so.Strict, - "If true, require package references to be explicitly noted") + cmd.Flags().BoolVarP(&so.Strict, "strict", "", so.Strict, + `If true, require package references to be explicitly prefixed with "ko://"`) }