deploy: Add missing store options.

* guix/scripts/deploy.scm (%default-options): Add missing options such
as 'print-build-trace?', etc.
master
Ludovic Courtès 2019-09-04 12:36:34 +02:00
parent 3c82f12541
commit 91300526b7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 4 deletions

View File

@ -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."