diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 13:08:57 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-02 13:08:57 +0100 |
commit | 7ca7720d4da524bda72762b1ed43f1e8e6ca302c (patch) | |
tree | 1b1a35dc7d2346e48921322306bf78ea54ef0825 /Makefile | |
parent | workflows/ci: unpin runner image (diff) | |
download | cgitize-7ca7720d4da524bda72762b1ed43f1e8e6ca302c.tar.gz cgitize-7ca7720d4da524bda72762b1ed43f1e8e6ca302c.zip |
Makefile: fix venv/upgrade
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |