diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
commit | 3bd571855591fd067b4e3647e81751c88d5464c9 (patch) | |
tree | e6bf7f6cc8e61c1d1c69e273656fd664b9ea76b3 /Makefile | |
parent | docker: add run.sh (diff) | |
download | cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.tar.gz cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.zip |
add --quiet flags to all installations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -119,14 +119,14 @@ venv/reset: .PHONY: venv venv: venv/reset - . '$(call escape,$(venv_dir))/bin/activate' && pip install -r requirements.txt + . '$(call escape,$(venv_dir))/bin/activate' && pip install -q -r requirements.txt # Is there a better way? .PHONY: venv/upgrade venv/upgrade: venv/reset . '$(call escape,$(venv_dir))/bin/activate' \ - && pip install . \ - && pip uninstall --yes "$$( python setup.py --name )" \ + && pip install -q . \ + && pip uninstall -q --yes "$$( python setup.py --name )" \ && pip freeze > requirements.txt .PHONY: py |