Files
DragonTCP/android/build_apk.cmd
T
2026-08-16 13:41:43 -03:00

10 lines
321 B
Batchfile

@echo off
REM Double-clickable wrapper around build_apk.ps1.
REM Any arguments are forwarded, e.g. build_apk.cmd -BuildCore
setlocal
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0build_apk.ps1" %*
set RC=%ERRORLEVEL%
if not "%RC%"=="0" echo.& echo BUILD FAILED (exit %RC%)
if "%~1"=="" pause
exit /b %RC%