From: Giovanni Bajo Date: Sun, 25 Feb 2018 11:00:58 +0000 (+0100) Subject: build: small cleanup in error message in make.bat X-Git-Tag: go1.11beta1~1462 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dd3b4714be643321babc859b807399aa288a4475;p=gostls13.git build: small cleanup in error message in make.bat Contrary to bash, double quotes cannot be used to group arguments in Windows shell, so they were being printed as literals by the echo command. Since a literal '>' is present in the string, it is sufficient to escape it correctly through '^'. Change-Id: Icc8c92b3dc8d813825adadbe3d921a38d44a1a94 Reviewed-on: https://go-review.googlesource.com/97056 Reviewed-by: Alex Brainman --- diff --git a/src/make.bat b/src/make.bat index be164e8df1..9df49cd50f 100644 --- a/src/make.bat +++ b/src/make.bat @@ -121,7 +121,7 @@ goto end :bootstrapfail echo ERROR: Cannot find %GOROOT_BOOTSTRAP%\bin\go.exe -echo "Set GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4." +echo Set GOROOT_BOOTSTRAP to a working Go tree ^>= Go 1.4. :fail set GOBUILDFAIL=1