Files
sbv2-v2/StyleVectors.bat
2024-06-16 17:56:32 +09:00

11 lines
208 B
Batchfile

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