diff options
author | dartraiden <wowemuh@gmail.com> | 2023-05-07 20:08:47 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-05-07 20:09:07 +0300 |
commit | a28c6f1d7c6cd725576aad87e298e2082da6c82b (patch) | |
tree | fa96e9015adccc15a1b4396034ac77db382c742a /bin17 | |
parent | 5653bb9d89b7d013c3805227ea48ed177db8959f (diff) |
Fix copy-paste bug
Diffstat (limited to 'bin17')
-rw-r--r-- | bin17/pascal.bat | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/bin17/pascal.bat b/bin17/pascal.bat index be52fa761d..5f5ecc2dbe 100644 --- a/bin17/pascal.bat +++ b/bin17/pascal.bat @@ -1,36 +1,36 @@ -@echo off - -if "%1" == "64" (set fpcpl=64) else (set fpcpl=) - -pushd ..\plugins - -pushd Actman -call make.bat fpc%fpcpl% 16 -if errorlevel 1 goto :Error -popd - -pushd mRadio -call make.bat fpc%fpcpl% 16 -if errorlevel 1 goto :Error -popd - -pushd Watrack -call make.bat fpc%fpcpl% 16 -if errorlevel 1 goto :Error -cd icons -call makeicons.bat fpc%fpcpl% 16 -if errorlevel 1 goto :Error -popd - -pushd HistoryPlusPlus -call make.bat %1 -if errorlevel 1 goto :Error -popd - -popd -goto :eof - -:Error -echo ============================= FAIL! ============================= -pause -exit +@echo off
+
+if "%1" == "64" (set fpcpl=64) else (set fpcpl=)
+
+pushd ..\plugins
+
+pushd Actman
+call make.bat fpc%fpcpl% 17
+if errorlevel 1 goto :Error
+popd
+
+pushd mRadio
+call make.bat fpc%fpcpl% 17
+if errorlevel 1 goto :Error
+popd
+
+pushd Watrack
+call make.bat fpc%fpcpl% 17
+if errorlevel 1 goto :Error
+cd icons
+call makeicons.bat fpc%fpcpl% 17
+if errorlevel 1 goto :Error
+popd
+
+pushd HistoryPlusPlus
+call make.bat %1
+if errorlevel 1 goto :Error
+popd
+
+popd
+goto :eof
+
+:Error
+echo ============================= FAIL! =============================
+pause
+exit
|