From a03c6eb774d010ddf965ad4c55a57d6be994e591 Mon Sep 17 00:00:00 2001 From: retoor Date: Mon, 25 Nov 2024 19:50:20 +0000 Subject: [PATCH] chore: prefix pip and python commands with venv path in Makefile build target --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8baa351..a610f90 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ ensure_env: -@python3 -m venv venv build: - pip install build - python -m build . - pip install -e . + ./venv/bin/python -m pip install build + ./venv/bin/python -m build . + ./venv/bin/python -m pip install -e .