From 3e096a6babf7d5f07141a5ea1f8239a9fd96932d Mon Sep 17 00:00:00 2001 From: Brian Kubisiak Date: Fri, 29 Nov 2024 07:08:28 -0800 Subject: [PATCH] environment: Suppress all output with --verbosity=0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/scripts/environment.scm (guix-environment*): Call 'with-status-verbosity' earlier. Fixes: Change-Id: I69c7dd1058b44d587312d957312a130a8703cfca Signed-off-by: Ludovic Courtès --- guix/scripts/environment.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index fc7fa84be7..648a497743 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -1140,8 +1140,8 @@ (define-syntax-rule (with-store/maybe store exp ...) (when (pair? symlinks) (leave (G_ "'--symlink' cannot be used without '--container'~%")))) - (with-store/maybe store - (with-status-verbosity (assoc-ref opts 'verbosity) + (with-status-verbosity (assoc-ref opts 'verbosity) + (with-store/maybe store (define manifest-from-opts (options/resolve-packages store opts))