From 7c405e8b6ece71d48be910fdee81aed281a8aee3 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Thu, 5 Sep 2024 08:16:34 -0600 Subject: [PATCH] dont print err content Signed-off-by: Meredith Lancaster --- pkg/cmd/attestation/verification/sigstore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/attestation/verification/sigstore.go b/pkg/cmd/attestation/verification/sigstore.go index d86a709b5..f4aad8c22 100644 --- a/pkg/cmd/attestation/verification/sigstore.go +++ b/pkg/cmd/attestation/verification/sigstore.go @@ -200,7 +200,7 @@ func (v *LiveSigstoreVerifier) Verify(attestations []*api.Attestation, policy ve )) return &SigstoreResults{ - Error: fmt.Errorf("verifying with issuer \"%s\": %v", issuer, err), + Error: fmt.Errorf("verifying with issuer \"%s\"", issuer), } }