Skip to content

Commit

Permalink
fixed incorrect error message
Browse files Browse the repository at this point in the history
Signed-off-by: chaosinthecrd <[email protected]>
  • Loading branch information
ChaosInTheCRD committed Jan 9, 2024
1 parent abce18b commit 6b61f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func runVerify(ctx context.Context, vo options.VerifyOptions) error {

inFile, err := os.Open(vo.PolicyFilePath)
if err != nil {
return fmt.Errorf("failed to open file to sign: %w", err)
return fmt.Errorf("failed to open policy file: %w", err)
}

defer inFile.Close()
Expand Down

0 comments on commit 6b61f30

Please sign in to comment.