aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-03-02 13:08:57 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-03-02 13:08:57 +0100
commit7ca7720d4da524bda72762b1ed43f1e8e6ca302c (patch)
tree1b1a35dc7d2346e48921322306bf78ea54ef0825
parentworkflows/ci: unpin runner image (diff)
downloadcgitize-7ca7720d4da524bda72762b1ed43f1e8e6ca302c.tar.gz
cgitize-7ca7720d4da524bda72762b1ed43f1e8e6ca302c.zip
Makefile: fix venv/upgrade
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 642970f..becd0a2 100644
--- a/Makefile
+++ b/Makefile
@@ -126,7 +126,7 @@ venv: venv/reset
venv/upgrade: venv/reset
. '$(call escape,$(venv_dir))/bin/activate' \
&& pip install -q . \
- && pip uninstall -q --yes "$$( python setup.py --name )" \
+ && pip uninstall -q --yes '$(call escape,$(PROJECT))' \
&& pip freeze > requirements.txt
.PHONY: py