Skip to content

Commit

Permalink
Fix VENV variable in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
foursixnine committed Feb 1, 2024
1 parent 8989d2f commit 75ce0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test: only-test checkstyle

VENV = qem-bot
.PHONY environment:
if [ ! -d "$(VENV)" ]; then virtualenv -p python3 $(venv); fi
if [ ! -d "$(VENV)" ]; then virtualenv -p python3 $(VENV); fi
. $(VENV)/bin/activate && pip install -r requirements-dev.txt -r requirements.txt

# Developers have bad memory, so we need to remind them to activate the virtualenv
Expand Down

0 comments on commit 75ce0fa

Please sign in to comment.