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 authored and Martchus committed Mar 5, 2024
1 parent 056f1e3 commit 44ad49f
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 44ad49f

Please sign in to comment.