summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2021-04-09 23:19:05 -0400
committerMark H Weaver <mhw@netris.org>2021-04-11 22:13:17 -0400
commite18e2e458fe584ee9eaeca40adbdcef895d32abf (patch)
treec2f81298f672547b587e6ea2c93c589b8699f799 /guix
parented3ef756f521a0df8596a88b66f65b7a1ad99252 (diff)
downloadguix-patches-e18e2e458fe584ee9eaeca40adbdcef895d32abf.tar
guix-patches-e18e2e458fe584ee9eaeca40adbdcef895d32abf.tar.gz
scripts: system: Default to -v3 when building a system.
This is a followup to 8f9052d5434a3a11e7b4ff14d6b0090256e08aa4. * guix/scripts/system.scm (verbosity-level): Change the default from 2 to 3 when building a system.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index c226f08371..0a051ee4e3 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -1145,7 +1145,7 @@ Some ACTIONS support additional ARGS.\n"))
"Return the verbosity level based on OPTS, the alist of parsed options."
(or (assoc-ref opts 'verbosity)
(if (eq? (assoc-ref opts 'action) 'build)
- 2 1)))
+ 3 1)))
;;;