Skip to content

Commit 235cc7f

Browse files
authored
Explain that a venv is being created (#1291)
1 parent 3732839 commit 235cc7f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ venv:
6969
.PHONY: ensure-venv
7070
ensure-venv:
7171
@if [ ! -d $(VENVDIR) ] ; then \
72+
echo "Creating venv in $(VENVDIR)"; \
7273
$(PYTHON) -m venv $(VENVDIR); \
7374
$(VENVDIR)/bin/python3 -m pip install --upgrade pip; \
7475
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \

0 commit comments

Comments
 (0)