guix-commits
[Top][All Lists]
Advanced

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

branch master updated: ci: Fix buildproducts reading.


From: guix-commits
Subject: branch master updated: ci: Fix buildproducts reading.
Date: Mon, 15 Jun 2020 03:53:13 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new bb76f50  ci: Fix buildproducts reading.
bb76f50 is described below

commit bb76f50b9b788cae344958f92f6c850cce484579
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Jun 15 09:47:41 2020 +0200

    ci: Fix buildproducts reading.
    
    This is a follow-up of 4e05bbb093a17145fcabd48ea1d2c9cd7559084d.
    
    * guix/ci.scm (<build>)[products]: Test for vector type, as products can be
    "null".
---
 guix/ci.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/ci.scm b/guix/ci.scm
index 36f85e1..97a9847 100644
--- a/guix/ci.scm
+++ b/guix/ci.scm
@@ -70,7 +70,7 @@
                (lambda (products)
                  (map json->build-product
                       ;; Before Cuirass 3db603c1, #f is always returned.
-                      (if products
+                      (if (vector? products)
                           (vector->list products)
                           '())))))
 



reply via email to

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