only parse stdout from "go env"

I use a wrapper around go that prints some debug to stderr
which causes the unmarshalling below to fail.
pull/901/head
Jamison Lahman 4 months ago committed by GitHub
parent 6ac80db02c
commit 7678613fd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2422,7 +2422,7 @@ func fetchGoEnv() error {
out, err := exec.Command("go", "env", "-json",
// Keep in sync with [sharedCacheType.GoEnv].
"GOOS", "GOARCH", "GOMOD", "GOVERSION", "GOROOT",
).CombinedOutput()
).Output()
if err != nil {
// TODO: cover this in the tests.
fmt.Fprintf(os.Stderr, `Can't find the Go toolchain: %v

Loading…
Cancel
Save