Skip to content

Commit

Permalink
Fix error message in genmin.go
Browse files Browse the repository at this point in the history
  • Loading branch information
myitcv committed Apr 16, 2018
1 parent 24e409f commit 9a83340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/prelude/genmin.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func main() {
func run() error {
bpkg, err := build.Import("github.com/gopherjs/gopherjs", "", build.FindOnly)
if err != nil {
return fmt.Errorf("failed to locate path for github.com/gopherjs/gopherjs/compiler/prelude: %v", err)
return fmt.Errorf("failed to locate path for github.com/gopherjs/gopherjs: %v", err)
}

preludeDir := filepath.Join(bpkg.Dir, "compiler", "prelude")
Expand Down

0 comments on commit 9a83340

Please sign in to comment.