diff options
author | Christopher Baines <mail@cbaines.net> | 2025-02-11 10:45:14 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-02-11 10:45:14 +0000 |
commit | e496425b294c493c69e7d20ae9347bad48b39dde (patch) | |
tree | b7172c1931bf2c1bf2fa9c88225c3f3a080d75d7 /guix-qa-frontpage | |
parent | 8c107652ed3510c7889a8a13123298ca584265f3 (diff) | |
download | qa-frontpage-e496425b294c493c69e7d20ae9347bad48b39dde.tar qa-frontpage-e496425b294c493c69e7d20ae9347bad48b39dde.tar.gz |
Remove duplicate "master" from the branches list
Diffstat (limited to 'guix-qa-frontpage')
-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 |