guix-commits
[Top][All Lists]
Advanced

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

[no subject]


From: Ludovic Courtès
Date: Wed, 24 Jan 2018 08:10:19 -0500 (EST)

branch: master
commit c62bb26e81df5a6a7a6bd2929f333532dcae275a
Author: Ludovic Courtès <address@hidden>
Date:   Wed Jan 24 14:00:11 2018 +0100

    base: Populate the 'Outputs' table.
    
    Fixes a regression introduced in
    d7306a4f48a666a008091bfeb94d1fdb32b46948 whereby 'register' would pass
    the empty list as #:outputs to 'db-add-build'.
    
    * src/cuirass/base.scm (build-packages)[register]: Always include
    outputs.
---
 src/cuirass/base.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/cuirass/base.scm b/src/cuirass/base.scm
index db2fdde..2cbfa45 100644
--- a/src/cuirass/base.scm
+++ b/src/cuirass/base.scm
@@ -337,8 +337,7 @@ updating DB accordingly."
            (outputs  (filter-map (lambda (res)
                                    (match res
                                      ((name . path)
-                                      (and (valid-path? store path)
-                                           `(,name . ,path)))))
+                                      `(,name . ,path))))
                                  (derivation-path->output-paths drv)))
            (cur-time (time-second (current-time time-utc))))
       (let ((build `((#:derivation . ,drv)



reply via email to

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