From 44dc410973d89a7f7f98eff8762dd0deb34cbe45 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Mon, 25 Mar 2013 12:13:34 +1100 Subject: all.bat,make.bat,run.bat: make these work even when directory has space in it R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/7510048 --- src/make.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/make.bat') diff --git a/src/make.bat b/src/make.bat index be1c8f52d..c1f171de4 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 -- cgit v1.2.1