From 9e6ec10bba23d2f259745b544ddc2dd4546fa569 Mon Sep 17 00:00:00 2001 From: "cmp@chromium.org" Date: Wed, 15 Jun 2011 23:30:53 +0000 Subject: [PATCH] Wrap calls to git.bat in quotes. Review URL: http://codereview.chromium.org/7178001 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@89268 0039d316-1c4b-4281-b951-d872f2087c98 --- bootstrap/win/win_tools.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/win/win_tools.bat b/bootstrap/win/win_tools.bat index 960a1cb7af..7f565bfd0c 100644 --- a/bootstrap/win/win_tools.bat +++ b/bootstrap/win/win_tools.bat @@ -49,8 +49,8 @@ call copy /y "%WIN_TOOLS_ROOT_DIR%\git_bin\gitk.bat" "%WIN_TOOLS_ROOT_DIR%\gitk. call copy /y "%WIN_TOOLS_ROOT_DIR%\git_bin\ssh.bat" "%WIN_TOOLS_ROOT_DIR%\ssh.bat" 1>nul call copy /y "%WIN_TOOLS_ROOT_DIR%\git_bin\ssh-keygen.bat" "%WIN_TOOLS_ROOT_DIR%\ssh-keygen.bat" 1>nul :: Ensure autocrlf and filemode are set correctly. -call %WIN_TOOLS_ROOT_DIR%\git.bat config --global core.autocrlf false -call %WIN_TOOLS_ROOT_DIR%\git.bat config --global core.filemode false +call "%WIN_TOOLS_ROOT_DIR%\git.bat" config --global core.autocrlf false +call "%WIN_TOOLS_ROOT_DIR%\git.bat" config --global core.filemode false goto :SVN_CHECK