3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

deploy: Add missing store options.

* guix/scripts/deploy.scm (%default-options): Add missing options such
as 'print-build-trace?', etc.
This commit is contained in:
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

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