From bdb6f600be3dc3457ffba52068180056a19626ef Mon Sep 17 00:00:00 2001 From: ihsan demir Date: Mon, 22 Feb 2016 16:54:33 +0200 Subject: [PATCH] Fix for release script error when there is space in directory path. --- scripts/verifyReleaseWindows.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/verifyReleaseWindows.bat b/scripts/verifyReleaseWindows.bat index a628f28e2b..dd7a7e8e87 100755 --- a/scripts/verifyReleaseWindows.bat +++ b/scripts/verifyReleaseWindows.bat @@ -1,13 +1,13 @@ -# Verify release +REM Verify release SET CURRENT_DIRECTORY=%cd% -call scripts\verifyReleaseWindowsSingleCase.bat %CURRENT_DIRECTORY%\cpp 32 STATIC || exit /b 1 +call scripts\verifyReleaseWindowsSingleCase.bat "%CURRENT_DIRECTORY%\cpp" 32 STATIC || exit /b 1 -call scripts\verifyReleaseWindowsSingleCase.bat %CURRENT_DIRECTORY%\cpp 32 SHARED || exit /b 1 +call scripts\verifyReleaseWindowsSingleCase.bat "%CURRENT_DIRECTORY%\cpp" 32 SHARED || exit /b 1 -call scripts\verifyReleaseWindowsSingleCase.bat %CURRENT_DIRECTORY%\cpp 64 STATIC || exit /b 1 +call scripts\verifyReleaseWindowsSingleCase.bat "%CURRENT_DIRECTORY%\cpp" 64 STATIC || exit /b 1 -call scripts\verifyReleaseWindowsSingleCase.bat %CURRENT_DIRECTORY%\cpp 64 SHARED || exit /b 1 +call scripts\verifyReleaseWindowsSingleCase.bat "%CURRENT_DIRECTORY%\cpp" 64 SHARED || exit /b 1 exit 0