From: Bryan C. Mills Date: Thu, 21 May 2020 04:09:34 +0000 (-0400) Subject: run.bat: use ..\bin\go instead of "go" to install std and cmd X-Git-Tag: go1.15beta1~100 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0d20a492823211cd816ded24c98cfcd58b198faa;p=gostls13.git run.bat: use ..\bin\go instead of "go" to install std and cmd The paths for the other "go" commands in this file were fixed in CL 223741, but this one was missed (and run.bat is not caught by the builders). Change-Id: Iba1efddc7d2fbe6af39c39d643508decc954bbc5 Reviewed-on: https://go-review.googlesource.com/c/go/+/234758 Run-TryBot: Bryan C. Mills TryBot-Result: Gobot Gobot Reviewed-by: Dmitri Shuralyov --- diff --git a/src/run.bat b/src/run.bat index 896c4ac3ec..69c181854b 100644 --- a/src/run.bat +++ b/src/run.bat @@ -30,7 +30,7 @@ rem TODO avoid rebuild if possible if x%1==x--no-rebuild goto norebuild echo ##### Building packages and commands. -go install -a -v std cmd +..\bin\go install -a -v std cmd if errorlevel 1 goto fail echo. :norebuild