Merge pull request #32 from codemhdi/python_testing

fix bug in start.bat
This commit is contained in:
Abolfazl Ghaemi
2026-04-27 19:13:13 +03:30
committed by GitHub
+2 -2
View File
@@ -10,11 +10,11 @@ set "VENV_DIR=.venv"
set "PY=" set "PY="
where py >nul 2>&1 where py >nul 2>&1
if %errorlevel%==0 ( if !errorlevel!==0 (
set "PY=py -3" set "PY=py -3"
) else ( ) else (
where python >nul 2>&1 where python >nul 2>&1
if %errorlevel%==0 ( if !errorlevel!==0 (
set "PY=python" set "PY=python"
) )
) )