8 lines
146 B
Batchfile
8 lines
146 B
Batchfile
@echo off
|
|
|
|
echo Running webui_train.py...
|
|
venv\Scripts\python webui_train.py
|
|
|
|
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
|
|
|
|
pause |