From 76478959cc4f9a029de6f66e033a42a3caaa8757 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 24 Aug 2024 09:32:01 +0200 Subject: [PATCH] Correct issue in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1ba75dc..94ca286d 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ $(VENV_PYTHON): venv-%-python: virtualenv -p /usr/bin/python3 $(if $(filter full,$*),venv,venv-$*) $(VENV_INST_UPG): venv-%: - $(if $(UPGRADE),$(VIRTUAL_ENV)/install install --upgrade pip,) + $(if $(UPGRADE),$(VIRTUAL_ENV)/pip install --upgrade pip,) $(foreach REQ,$(REQS), $(VIRTUAL_ENV)/pip install $(UPGRADE) -r $(REQ);) $(if $(PRE_COMMIT),$(VIRTUAL_ENV)/pre-commit install --hook-type pre-commit,)