Skip to content

Commit 25e2f49

Browse files
committed
Fix error message in genmin.go
1 parent 5b509e3 commit 25e2f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/prelude/genmin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func main() {
2323
func run() error {
2424
bpkg, err := build.Import("github.com/gopherjs/gopherjs", "", build.FindOnly)
2525
if err != nil {
26-
return fmt.Errorf("failed to locate path for github.com/gopherjs/gopherjs/compiler/prelude: %v", err)
26+
return fmt.Errorf("failed to locate path for github.com/gopherjs/gopherjs: %v", err)
2727
}
2828

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

0 commit comments

Comments
 (0)