From 2eef061c4284479afc58f7b514112fa8152c8dcd Mon Sep 17 00:00:00 2001 From: Shannon Date: Fri, 9 May 2014 15:58:09 +1000 Subject: [PATCH] attempting to add the default git path to the path variable - hopefully the server has the same one --- build/BuildBelle.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/BuildBelle.bat b/build/BuildBelle.bat index e7673f054e..c9bd6e5dbb 100644 --- a/build/BuildBelle.bat +++ b/build/BuildBelle.bat @@ -10,10 +10,12 @@ ECHO Current folder: %CD% for /f "delims=" %%A in ('dir %nuGetFolder%node.js.* /b') do set "nodePath=%nuGetFolder%%%A\" for /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') do set "npmPath=%nuGetFolder%%%A\tools\" +set "gitPath=C:\Program Files (x86)\Git\bin\" + ECHO Temporarily adding Npm and Node to path SET oldPath=%PATH% -path=%npmPath%;%nodePath%;%PATH% +path=%npmPath%;%nodePath%;%gitPath%;%PATH% SET buildFolder=%CD%