[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: scripts: More commands default to verbosity level 1.
From: |
guix-commits |
Subject: |
11/11: scripts: More commands default to verbosity level 1. |
Date: |
Thu, 4 Apr 2019 11:49:22 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 985730c1afac6b5077df9ca8a871db9750ac3a9d
Author: Ludovic Courtès <address@hidden>
Date: Thu Apr 4 17:32:37 2019 +0200
scripts: More commands default to verbosity level 1.
* guix/scripts/environment.scm (%default-options): Change 'verbosity' to 1.
* guix/scripts/pack.scm (%default-options): Likewise.
* guix/scripts/system.scm (guix-system): Likewise, except for the
'build' command.
---
guix/scripts/environment.scm | 2 +-
guix/scripts/pack.scm | 2 +-
guix/scripts/system.scm | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index 2d1ba4c..99c351a 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -192,7 +192,7 @@ COMMAND or an interactive shell in that environment.\n"))
(print-extended-build-trace? . #t)
(multiplexed-build-output? . #t)
(debug . 0)
- (verbosity . 2)))
+ (verbosity . 1)))
(define (tag-package-arg opts arg)
"Return a two-element list with the form (TAG ARG) that tags ARG with either
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index d2ef68d..b1d1e87 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -629,7 +629,7 @@ please email '~a'~%")
(print-extended-build-trace? . #t)
(multiplexed-build-output? . #t)
(debug . 0)
- (verbosity . 2)
+ (verbosity . 1)
(symlinks . ())
(compressor . ,(first %compressors))))
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 97508f4..78aa6cf 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -1299,8 +1299,7 @@ argument list and OPTS is the option alist."
(command (assoc-ref opts 'action)))
(parameterize ((%graft? (assoc-ref opts 'graft?)))
(with-status-verbosity (or (assoc-ref opts 'verbosity)
- (if (memq command '(init reconfigure))
- 1 2))
+ (if (eq? command 'build) 2 1))
(process-command command args opts))))))
;;; Local Variables:
- branch master updated (660e0050 -> 985730c), guix-commits, 2019/04/04
- 01/11: build: Always ship the (gnu installer …) modules., guix-commits, 2019/04/04
- 03/11: gnu: java-jgit: Move to java.scm., guix-commits, 2019/04/04
- 06/11: gnu: raincat: Move to haskell-apps.scm., guix-commits, 2019/04/04
- 05/11: gnu: ghc-tls: Move to haskell-crypto.scm., guix-commits, 2019/04/04
- 11/11: scripts: More commands default to verbosity level 1.,
guix-commits <=
- 04/11: gnu: Move ghc-hxt & co. to haskell-web.scm., guix-commits, 2019/04/04
- 10/11: gexp: Remove workarounds for <https://bugs.gnu.org/15602>., guix-commits, 2019/04/04
- 09/11: gexp: 'compiled-modules' loads modules before compiling them., guix-commits, 2019/04/04
- 02/11: gnu: Add (gnu packages haskell-apps)., guix-commits, 2019/04/04
- 07/11: gnu: Mov ghc-sdl2 & co. to haskell-apps.scm., guix-commits, 2019/04/04
- 08/11: gnu: Move nss & co. to nss.scm., guix-commits, 2019/04/04