diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-09-04 12:36:34 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-04 13:02:27 +0200 |
commit | 91300526b7d9d775bd98a700ed3758420ef9eac6 (patch) | |
tree | 16d8c5c8d52a2261842bbe8636655a214f213f18 /guix/scripts | |
parent | 3c82f1254116be2a9216b7c7e5e8c001ff486270 (diff) |
deploy: Add missing store options.
* guix/scripts/deploy.scm (%default-options): Add missing options such
as 'print-build-trace?', etc.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/deploy.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm index 329de41143..cf571756fd 100644 --- a/guix/scripts/deploy.scm +++ b/guix/scripts/deploy.scm @@ -66,11 +66,15 @@ Perform the deployment specified by FILE.\n")) %standard-build-options)) (define %default-options - `((substitutes? . #t) - (build-hook? . #t) - (graft? . #t) + ;; Alist of default option values. + `((verbosity . 1) (debug . 0) - (verbosity . 1))) + (graft? . #t) + (substitutes? . #t) + (build-hook? . #t) + (print-build-trace? . #t) + (print-extended-build-trace? . #t) + (multiplexed-build-output? . #t))) (define (load-source-file file) "Load FILE as a user module." |