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".
This commit is contained in:
parent
fdc9e9f53d
commit
bb76f50b9b
@ -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)
|
||||
'())))))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user