From ff70c67b46709b5497203cf239af3db7f10c4701 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 19 Mar 2024 11:05:35 -0400 Subject: [PATCH] Explain that a venv is being created The first time I used `make html` I panicked when I saw lots of packages being installed and I didn't know where they were going. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e394e0d4b..76f5b9df5 100644 --- a/Makefile +++ b/Makefile @@ -69,6 +69,7 @@ venv: .PHONY: ensure-venv ensure-venv: @if [ ! -d $(VENVDIR) ] ; then \ + echo "Creating venv in $(VENVDIR)"; \ $(PYTHON) -m venv $(VENVDIR); \ $(VENVDIR)/bin/python3 -m pip install --upgrade pip; \ $(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \