Files
sbv2-v2/Editor.bat
litagin02 dd867c0724 Fix typo
2024-02-26 18:25:39 +09:00

11 lines
205 B
Batchfile

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