From 7b5de7240e018b72d4469c4fc085edc6274c4267 Mon Sep 17 00:00:00 2001 From: Lucio De Re Date: Tue, 19 Feb 2013 19:02:18 +0800 Subject: [PATCH] src/run.rc: "go env -9" is not valid, the correct command is "go tool dist env -9". R=minux.ma, bradfitz CC=golang-dev https://golang.org/cl/7307120 --- src/run.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rc b/src/run.rc index e70f5c6966..7e5d8ce379 100755 --- a/src/run.rc +++ b/src/run.rc @@ -3,7 +3,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -eval `{go env -9} +eval `{go tool dist env -9} # allow all.rc to avoid double-build of everything rebuild = true -- 2.48.1