From 5516fb66ce1f3d080a898e8cc66a531a796643ba Mon Sep 17 00:00:00 2001 From: Scott Rigby Date: Tue, 26 Aug 2025 16:24:02 -0400 Subject: [PATCH] skip unnecessary check Co-authored-by: Evans Mungai Signed-off-by: Scott Rigby --- pkg/cmd/plugin_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/plugin_install.go b/pkg/cmd/plugin_install.go index 8c5542cc2..0abefa76b 100644 --- a/pkg/cmd/plugin_install.go +++ b/pkg/cmd/plugin_install.go @@ -162,7 +162,7 @@ func (o *pluginInstallOptions) run(out io.Writer) error { } // If verification was successful, show the details - if shouldVerify && verifyResult != nil { + if verifyResult != nil { for _, signer := range verifyResult.SignedBy { fmt.Fprintf(out, "Signed by: %s\n", signer) }