Fix text encoding in Server.bat

This commit is contained in:
tsukumi
2024-05-01 11:21:01 +09:00
parent 3730eb50b7
commit 0d9034b8bd

View File

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