Files
sbv2-v2/Dataset.bat
2023-12-27 16:16:22 +09:00

11 lines
184 B
Batchfile

chcp 65001 > NUL
@echo off
pushd %~dp0
echo Running webui_dataset.py...
venv\Scripts\python webui_dataset.py
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
popd
pause