mirror of
https://github.com/spencershepard/RotorOps.git
synced 2025-11-10 15:45:30 +00:00
Fix consistent name of venv folder in build script
This commit is contained in:
parent
b898b4dbdd
commit
143c6991ea
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user