You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
341 B
Batchfile
Executable File
25 lines
341 B
Batchfile
Executable File
|
|
@echo off
|
|
|
|
if "%uebp_testfail%" == "1" exit /B 1
|
|
|
|
if not "%uebp_LogFolder%" == "" del /s /f /q "%uebp_LogFolder%\*.*"
|
|
call runuat.bat %*
|
|
if ERRORLEVEL 1 goto fail
|
|
|
|
ECHO Test Success: call runuat.bat %*
|
|
exit /B 0
|
|
|
|
:fail
|
|
|
|
ECHO ****************** FAILED TEST:
|
|
ECHO call runuat.bat %*
|
|
ECHO ******************
|
|
|
|
set uebp_testfail=1
|
|
|
|
exit /B 1
|
|
|
|
|
|
|