From 143c6991ea70d109faa7d2c8d473ab7dd8fb2cff Mon Sep 17 00:00:00 2001 From: "Mr.Alien" Date: Fri, 17 May 2024 18:31:38 +0200 Subject: [PATCH] Fix consistent name of venv folder in build script --- Generator/build.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Generator/build.bat b/Generator/build.bat index 135b1f1..322458a 100644 --- a/Generator/build.bat +++ b/Generator/build.bat @@ -1,9 +1,9 @@ IF EXIST ".\venv" ( call .\venv\Scripts\activate.bat ) ELSE ( - IF EXIST "..\.venv" ( + IF EXIST "..\venv" ( rem try to activate venv from root directory (VS Code default) - call ..\.venv\Scripts\activate.bat + call ..\venv\Scripts\activate.bat ) ELSE ( echo "venv not found. Please create a virtual environment and activate it." pause >nul