From c97163f38f747f3eaebdc19707236810a0b8b047 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 17 May 2023 17:41:45 +0100 Subject: Fix listing builds stopping early --- scripts/guix-build-coordinator.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in index f3be3d5..daa0873 100644 --- a/scripts/guix-build-coordinator.in +++ b/scripts/guix-build-coordinator.in @@ -573,8 +573,7 @@ tags: "\n"))) (vector->list (assoc-ref response "builds"))) - (when (= (vector-length (assoc-ref response "builds")) - (assq-ref opts 'limit)) + (unless (= (vector-length (assoc-ref response "builds")) 0) (loop (assoc-ref (vector-ref (assoc-ref response "builds") -- cgit v1.2.3