From 1cb345809d156498666210aba19e2519a56630d9 Mon Sep 17 00:00:00 2001 From: mhdi Date: Mon, 27 Apr 2026 12:12:16 +0330 Subject: [PATCH] fix bug in start.bat if you install 3.11 or higher version of python this batch file may have error i use this code for fix this bug --- start.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.bat b/start.bat index 69dbfbb..992fd0b 100644 --- a/start.bat +++ b/start.bat @@ -10,11 +10,11 @@ set "VENV_DIR=.venv" set "PY=" where py >nul 2>&1 -if %errorlevel%==0 ( +if !errorlevel!==0 ( set "PY=py -3" ) else ( where python >nul 2>&1 - if %errorlevel%==0 ( + if !errorlevel!==0 ( set "PY=python" ) )