aboutsummaryrefslogtreecommitdiff
path: root/src/run.bat
diff options
context:
space:
mode:
authorAlex Brainman <alex.brainman@gmail.com>2013-03-25 12:13:34 +1100
committerAlex Brainman <alex.brainman@gmail.com>2013-03-25 12:13:34 +1100
commit77fb0c17df4758ac68ca26b67837a99a61a457d7 (patch)
tree609c076d7cc66ddd5a01b1f5f9883f3473509c70 /src/run.bat
parent976d99b9a883631af276a4cd8e0205095457b430 (diff)
downloadgo-77fb0c17df4758ac68ca26b67837a99a61a457d7.tar.gz
go-77fb0c17df4758ac68ca26b67837a99a61a457d7.zip
all.bat,make.bat,run.bat: make these work even when directory has space in it
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7510048
Diffstat (limited to 'src/run.bat')
-rw-r--r--src/run.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/run.bat b/src/run.bat
index 3f950f5414..1a68eb5738 100644
--- a/src/run.bat
+++ b/src/run.bat
@@ -74,12 +74,12 @@ echo.
:: cgo tests
if x%CGO_ENABLED% == x0 goto nocgo
echo # ..\misc\cgo\life
-go run %GOROOT%\test\run.go - ..\misc\cgo\life
+go run "%GOROOT%\test\run.go" - ..\misc\cgo\life
if errorlevel 1 goto fail
echo.
echo # ..\misc\cgo\stdio
-go run %GOROOT%\test\run.go - ..\misc\cgo\stdio
+go run "%GOROOT%\test\run.go" - ..\misc\cgo\stdio
if errorlevel 1 goto fail
echo.
@@ -90,7 +90,7 @@ echo.
:nocgo
echo # ..\doc\progs
-go run %GOROOT%\test\run.go - ..\doc\progs
+go run "%GOROOT%\test\run.go" - ..\doc\progs
if errorlevel 1 goto fail
echo.