fix(extension): v0.3.9 — SDK JS 파일 VSIX 포함 수정 + start_bot.bat conda Python 우선

This commit is contained in:
Variet Worker
2026-03-11 00:01:26 +09:00
parent ff559bc6ee
commit 71aa80d144
6 changed files with 24 additions and 34 deletions

View File

@@ -7,13 +7,13 @@ echo ║ Gravity Bridge Bot Launcher ║
echo ╚══════════════════════════════════════╝
echo.
REM — Find Python
REM — Find Python (conda first, then system)
set PYTHON=
where python >nul 2>&1 && set PYTHON=python
if exist "C:\ProgramData\miniforge3\envs\gravity_control\python.exe" (
set PYTHON=C:\ProgramData\miniforge3\envs\gravity_control\python.exe
)
if "%PYTHON%"=="" (
if exist "C:\ProgramData\miniforge3\envs\gravity_control\python.exe" (
set PYTHON=C:\ProgramData\miniforge3\envs\gravity_control\python.exe
)
where python >nul 2>&1 && set PYTHON=python
)
if "%PYTHON%"=="" (
echo [ERROR] Python not found. Install Python 3.10+ or set path.