17 lines
240 B
Batchfile
17 lines
240 B
Batchfile
@echo off
|
|
echo Building Serien-Checker.exe...
|
|
echo.
|
|
|
|
uv run build.py
|
|
|
|
if %errorlevel% neq 0 (
|
|
echo.
|
|
echo Build failed with error code %errorlevel%
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo.
|
|
echo Build completed successfully!
|
|
pause
|