diff options
author | Alex Brainman <alex.brainman@gmail.com> | 2013-03-25 12:13:34 +1100 |
---|---|---|
committer | Alex Brainman <alex.brainman@gmail.com> | 2013-03-25 12:13:34 +1100 |
commit | 77fb0c17df4758ac68ca26b67837a99a61a457d7 (patch) | |
tree | 609c076d7cc66ddd5a01b1f5f9883f3473509c70 /src/make.bat | |
parent | 976d99b9a883631af276a4cd8e0205095457b430 (diff) | |
download | go-git-77fb0c17df4758ac68ca26b67837a99a61a457d7.tar.gz |
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/make.bat')
-rw-r--r-- | src/make.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.bat b/src/make.bat index be1c8f52dc..c1f171de49 100644 --- a/src/make.bat +++ b/src/make.bat @@ -109,8 +109,8 @@ if x%1==x--no-banner goto nobanner goto end :copydist -mkdir %GOTOOLDIR% 2>NUL -copy cmd\dist\dist.exe %GOTOOLDIR%\ +mkdir "%GOTOOLDIR%" 2>NUL +copy cmd\dist\dist.exe "%GOTOOLDIR%\" goto end :fail |