From e5e654a0b3306d979f94f50093e62b29ec8ce1a5 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Thu, 31 Jul 2025 11:20:18 -0700 Subject: [PATCH] fix: Correct shell activation command in Makefile for proper environment setup --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9a3d832..1daf8c7 100644 --- a/Makefile +++ b/Makefile @@ -147,7 +147,7 @@ attach: ## Open a shell in the container docker-compose exec -it ${TARGET} /bin/bash shell: ## Open a shell in the local environment @echo "Opening a shell in the local environment..." - source .venv/bin/activate.${SHELL} && /bin/${SHELL} + source .venv/bin/activate.${SHELL}; /bin/${SHELL} requirements: ## Export the requirements to a file @echo "Exporting requirements to requirements.txt..." poetry export --without-hashes -f requirements.txt -o requirements.txt