From 62e75b80ad7290f508e3e6996a292a38170ba45b Mon Sep 17 00:00:00 2001 From: ChristianCiach Date: Tue, 4 Oct 2022 13:29:05 +0200 Subject: [PATCH] Fix flag description: "sign" --> "comment" This is probably a copy/paste-mistake, since the text is the same as in https://github.com/sigstore/cosign/blob/main/cmd/cosign/cli/options/sign.go Signed-off-by: ChristianCiach --- cmd/cosign/cli/options/verify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cosign/cli/options/verify.go b/cmd/cosign/cli/options/verify.go index 123da549b7e..3f1a29c145a 100644 --- a/cmd/cosign/cli/options/verify.go +++ b/cmd/cosign/cli/options/verify.go @@ -55,7 +55,7 @@ func (o *VerifyOptions) AddFlags(cmd *cobra.Command) { "whether to check the claims found") cmd.Flags().StringVar(&o.Attachment, "attachment", "", - "related image attachment to sign (sbom), default none") + "related image attachment to verify (sbom), default none") cmd.Flags().StringVarP(&o.Output, "output", "o", "json", "output format for the signing image information (json|text)")