]> Cypherpunks.ru repositories - gostls13.git/commitdiff
build: small cleanup in error message in make.bat
authorGiovanni Bajo <rasky@develer.com>
Sun, 25 Feb 2018 11:00:58 +0000 (12:00 +0100)
committerGiovanni Bajo <rasky@develer.com>
Mon, 26 Feb 2018 10:27:14 +0000 (10:27 +0000)
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 <alex.brainman@gmail.com>
src/make.bat

index be164e8df14db2def3e541e209d8b606c85bb072..9df49cd50fa137e954eb1f91abb6d1e6d7e09c38 100644 (file)
@@ -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