From: Egon Elbre Date: Fri, 3 Apr 2020 17:01:25 +0000 (+0300) Subject: run.bat: check go.exe instead of go X-Git-Tag: go1.15beta1~667 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d78639519df17bf7fb5a7facef007e90d6c0283c;p=gostls13.git run.bat: check go.exe instead of go Windows requires checking with the .exe extension. Change-Id: I8e2fe83df81b92f04967bafb28f8effde999f597 Reviewed-on: https://go-review.googlesource.com/c/go/+/227157 Reviewed-by: Bryan C. Mills Run-TryBot: Bryan C. Mills TryBot-Result: Gobot Gobot --- diff --git a/src/run.bat b/src/run.bat index 46858f8fa0..896c4ac3ec 100644 --- a/src/run.bat +++ b/src/run.bat @@ -4,7 +4,7 @@ @echo off -if exist ..\bin\go goto ok +if exist ..\bin\go.exe goto ok echo Must run run.bat from Go src directory after installing cmd/go. goto fail :ok