From 7678613fd00797d18a17c9c5a8a23447d9bb5d22 Mon Sep 17 00:00:00 2001 From: Jamison Lahman Date: Fri, 6 Dec 2024 04:11:07 -0800 Subject: [PATCH] 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. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index abfb3f2..81adefa 100644 --- a/main.go +++ b/main.go @@ -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