1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/tools/build.bat

8 lines
166 B
Batchfile
Raw Normal View History

pushd ..\addons\
2015-01-21 18:56:06 +00:00
del /q /f *.pbo
for /D %%i in (*.*) do (
makepbo -NUP -@=z\addons\ace\%%i %%i ace_%%i.pbo
2015-01-13 05:14:27 +00:00
if %errorlevel% neq 0 exit /b %errorlevel%
)
2015-01-13 05:14:27 +00:00
popd