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.
This commit is contained in:
Mark H Weaver 2021-04-09 23:19:05 -04:00
parent ed3ef756f5
commit e18e2e458f
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516

@ -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)))
;;;