aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 21:38:01 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 21:38:01 +0100
commit3bd571855591fd067b4e3647e81751c88d5464c9 (patch)
treee6bf7f6cc8e61c1d1c69e273656fd664b9ea76b3 /Makefile
parentdocker: add run.sh (diff)
downloadcgitize-3bd571855591fd067b4e3647e81751c88d5464c9.tar.gz
cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.zip
add --quiet flags to all installations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1f24ef6..cf02016 100644
--- a/Makefile
+++ b/Makefile
@@ -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