Skip to content

Commit

Permalink
Update compileAll.bat to support space in path
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeus64 committed Sep 21, 2023
1 parent f29b462 commit acb92db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CompileAll.bat
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ goto COPY_AND_PATCH_DELPHI_SOURCE

:DO_COPY_AND_PATCH_DELPHI_SOURCE

call %ALBaseDir%\Embarcadero\%ALDelphiName%\Update.bat
call "%ALBaseDir%\Embarcadero\%ALDelphiName%\Update.bat"
IF ERRORLEVEL 1 goto ERROR
echo.

Expand Down Expand Up @@ -109,11 +109,11 @@ goto DOWNLOAD_LIBRARIES

:DO_DOWNLOAD_LIBRARIES

call %ALBaseDir%\Libraries\ios\DownloadLibraries.bat
call "%ALBaseDir%\Libraries\ios\DownloadLibraries.bat"
IF ERRORLEVEL 1 goto ERROR
echo.

call %ALBaseDir%\Libraries\jar\DownloadLibraries.bat
call "%ALBaseDir%\Libraries\jar\DownloadLibraries.bat"
IF ERRORLEVEL 1 goto ERROR
echo.

Expand Down Expand Up @@ -185,7 +185,7 @@ goto RUN_TESTS

:DO_RUN_TESTS

call %ALBaseDir%\Tests\RunTests.bat
call "%ALBaseDir%\Tests\RunTests.bat"
IF ERRORLEVEL 1 goto ERROR
echo.

Expand Down

0 comments on commit acb92db

Please sign in to comment.