diff options
| author | Brian Kubisiak <brian@kubisiak.com> | 2024-11-29 07:08:28 -0800 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-18 13:23:30 +0100 |
| commit | 3e096a6babf7d5f07141a5ea1f8239a9fd96932d (patch) | |
| tree | af0a7e3f8f3b9cc9eeabd3abdbad1f42d8697e29 | |
| parent | a34c9713e22c85366d07dfddb3ba00f7a88ffaaf (diff) | |
environment: Suppress all output with --verbosity=0
* guix/scripts/environment.scm (guix-environment*): Call
'with-status-verbosity' earlier.
Fixes: <https://issues.guix.gnu.org/71298>
Change-Id: I69c7dd1058b44d587312d957312a130a8703cfca
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | guix/scripts/environment.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index fc7fa84be7b..648a4977432 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -1140,8 +1140,8 @@ command-line option processing with 'parse-command-line'." (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)) |
