From 45e2987622871a4235686e51ca99aa279fd48afd Mon Sep 17 00:00:00 2001 From: kingbri Date: Mon, 18 Dec 2023 23:57:30 -0500 Subject: [PATCH] Start: Fix batch file condition Signed-off-by: kingbri --- Start.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Start.bat b/Start.bat index 8695aba..80cfc74 100644 --- a/Start.bat +++ b/Start.bat @@ -21,5 +21,5 @@ for %%A in (%*) do ( call "%VENV_DIR%\Scripts\activate.bat" call pip -V -if defined IGNORE_UPGRADE call pip install --upgrade -r %REQUIREMENTS_FILE% +if not defined IGNORE_UPGRADE call pip install --upgrade -r %REQUIREMENTS_FILE% call python main.py