Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing incorrect error message on Verify #350

Merged
merged 13 commits into from
May 3, 2024
Merged
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