mirror of
https://git.hiabuto.net/C3MA/CCMA.git
synced 2026-07-01 19:26:53 +02:00
17 lines
221 B
Batchfile
17 lines
221 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set SCRIPT_DIR=%~dp0
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%build.ps1"
|
|
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Build failed.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo Build finished.
|
|
pause
|