Skip to content

Commit

Permalink
Update gnovm/pkg/gnomod/parse.go
Browse files Browse the repository at this point in the history
Co-authored-by: Manfred Touron <[email protected]>
  • Loading branch information
harry-hov and moul authored Jun 23, 2023
1 parent e1c8218 commit 6b63e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/pkg/gnomod/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func ParseAndValidate(fpath string) (*File, error) {

b, err := os.ReadFile(fpath)
if err != nil {
return nil, fmt.Errorf("could not read gno.mod file: %w", err)
return nil, fmt.Errorf("could not read %q: %w", fpath, err)
}
gm, err := Parse(fpath, b)
if err != nil {
Expand Down

0 comments on commit 6b63e21

Please sign in to comment.