Skip to content

Commit c1ca12b

Browse files
authored
fix: Fix direnv path (#94)
Fix mismatched paths that were resulting in pip install running on every cd
1 parent 98d50e3 commit c1ca12b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.envrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [[ -f .env ]]; then
44
dotenv .env
55
fi
66

7-
if [ ! -d .venv ]; then
7+
if [ ! -d python/.venv ]; then
88
echo "warning: creating virtualenv for the first time"
99
make setup
1010
source python/.venv/bin/activate

0 commit comments

Comments
 (0)