guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/07: deploy: Add missing store options.


From: guix-commits
Subject: 02/07: deploy: Add missing store options.
Date: Wed, 4 Sep 2019 07:02:40 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 91300526b7d9d775bd98a700ed3758420ef9eac6
Author: Ludovic Courtès <address@hidden>
Date:   Wed Sep 4 12:36:34 2019 +0200

    deploy: Add missing store options.
    
    * guix/scripts/deploy.scm (%default-options): Add missing options such
    as 'print-build-trace?', etc.
---
 guix/scripts/deploy.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm
index 329de41..cf57175 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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]