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:
parent
3c82f12541
commit
91300526b7
|
@ -66,11 +66,15 @@ Perform the deployment specified by FILE.\n"))
|
||||||
%standard-build-options))
|
%standard-build-options))
|
||||||
|
|
||||||
(define %default-options
|
(define %default-options
|
||||||
`((substitutes? . #t)
|
;; Alist of default option values.
|
||||||
(build-hook? . #t)
|
`((verbosity . 1)
|
||||||
(graft? . #t)
|
|
||||||
(debug . 0)
|
(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)
|
(define (load-source-file file)
|
||||||
"Load FILE as a user module."
|
"Load FILE as a user module."
|
||||||
|
|
Loading…
Reference in New Issue