From 7537e42d12f143eb6b111e62ea0f17c55b5f133f Mon Sep 17 00:00:00 2001 From: George Hickman Date: Sun, 27 Apr 2025 13:04:29 +0100 Subject: [PATCH] Don't output pinned requirements to the terminal --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 86fcac0e..3cd8f5aa 100644 --- a/Makefile +++ b/Makefile @@ -29,5 +29,5 @@ run-prod: gunicorn core.wsgi --log-file - compile: _uv - uv pip compile requirements.prod.in --output-file=requirements.prod.txt - uv pip compile requirements.dev.in --output-file=requirements.dev.txt + uv pip compile --quiet requirements.prod.in --output-file=requirements.prod.txt + uv pip compile --quiet requirements.dev.in --output-file=requirements.dev.txt