Skip to content

Commit

Permalink
Fix error message for go vet
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhender authored and bep committed Aug 30, 2018
1 parent ea8ef57 commit 47d4edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func Lint() error {
// Run go vet linter
func Vet() error {
if err := sh.Run(goexe, "vet", "./..."); err != nil {
return fmt.Errorf("error running govendor: %v", err)
return fmt.Errorf("error running go vet: %v", err)
}
return nil
}
Expand Down

0 comments on commit 47d4edc

Please sign in to comment.