From 000cdc0100ad84c7d01e262d35df5aa1ac8965b7 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Fri, 13 Dec 2024 11:38:31 -0500 Subject: [PATCH] fix: Fix direnv path Fix mismatched paths that were resulting in pip install running on every cd --- .envrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.envrc b/.envrc index eb1bb7e8..f6e06a99 100644 --- a/.envrc +++ b/.envrc @@ -4,7 +4,7 @@ if [[ -f .env ]]; then dotenv .env fi -if [ ! -d .venv ]; then +if [ ! -d python/.venv ]; then echo "warning: creating virtualenv for the first time" make setup source python/.venv/bin/activate