Skip to content

Commit

Permalink
tmplrun: fix error message (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
rotemtam authored May 12, 2024
1 parent bec74f8 commit 188fd45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmplrun/tmplrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (r *Runner) gorun(src []byte) (string, error) {
func gorun(target string) (string, error) {
s, err := gocmd("run", target)
if err != nil {
return "", fmt.Errorf("gormschema: %s", err)
return "", fmt.Errorf("tmplrun: %s", err)
}
return s, nil
}
Expand Down

0 comments on commit 188fd45

Please sign in to comment.