@echo off setlocal EnableExtensions set "SCRIPT_DIR=%~dp0" echo Building Commonwealth Online plugin... call "%SCRIPT_DIR%build.bat" if errorlevel 1 exit /b 1 echo. echo Building PrismaUI_F4... call "%SCRIPT_DIR%build-prismaui.bat" if errorlevel 1 exit /b 1 echo. echo Deploying to Fallout 4... call "%SCRIPT_DIR%deploy-all.bat" %* if errorlevel 1 exit /b 1 echo. echo All builds and deployment finished. endlocal exit /b 0