fix: only parse "go env"s stdout

pull/896/head
Jamison Lahman 4 months ago
parent 6ac80db02c
commit 7803df6fdd

@ -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