Skip to content

Commit

Permalink
feat: fix build error
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry committed Dec 20, 2023
1 parent 5e752e4 commit f7ceed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cosign/cli/verify/verify_blob_attestation.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (c *VerifyBlobAttestationCommand) Exec(ctx context.Context, artifactPath st
if err != nil {
return fmt.Errorf("new envelope verifier: %w", err)
}
if _, err := dssev.Verify(&env); err != nil {
if _, err := dssev.Verify(ctx, &env); err != nil {
return fmt.Errorf("dsse verify: %w", err)
}

Expand Down

0 comments on commit f7ceed8

Please sign in to comment.