13 lines
148 B
Batchfile
13 lines
148 B
Batchfile
|
@echo OFF
|
||
|
|
||
|
set "FullScriptPath=%~dp0"
|
||
|
|
||
|
python %FullScriptPath%prepare.py %*
|
||
|
if %errorlevel% neq 0 goto error
|
||
|
|
||
|
exit /b
|
||
|
|
||
|
:error
|
||
|
echo FAILED
|
||
|
exit /b 1
|