Browse Source

loader: merge go.env file which is now required starting in Go 1.21 to correctly get required packages

Signed-off-by: deadprogram <ron@hybridgroup.com>
pull/3855/head
deadprogram 1 year ago
committed by Ayke
parent
commit
756cdf44ed
  1. 5
      loader/goroot.go

5
loader/goroot.go

@ -207,6 +207,11 @@ func listGorootMergeLinks(goroot, tinygoroot string, overrides map[string]bool)
merges[dir] = filepath.Join(goroot, dir)
}
// Required starting in Go 1.21 due to https://github.com/golang/go/issues/61928
if _, err := os.Stat(filepath.Join(goroot, "go.env")); err == nil {
merges["go.env"] = filepath.Join(goroot, "go.env")
}
return merges, nil
}

Loading…
Cancel
Save