diff options
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index 83b9579..7cb9cee 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -328,11 +328,10 @@ (get-latest-processed-branch-revision* (memoize get-latest-processed-branch-revision)) (branches - (cons "master" - (map (lambda (branch) - (assoc-ref branch "name")) - (list-branches - (list-branches-url %data-service-guix-repository-id)))))) + (map (lambda (branch) + (assoc-ref branch "name")) + (list-branches + (list-branches-url %data-service-guix-repository-id))))) ;; Several series can use the same base revision, so memoize looking up ;; the changes compared to master |