From 3bd571855591fd067b4e3647e81751c88d5464c9 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 25 Feb 2023 21:38:01 +0100 Subject: add --quiet flags to all installations --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3