aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-10-11 13:33:48 +0100
committerChristopher Baines <mail@cbaines.net>2022-10-11 13:33:48 +0100
commitb15be71ded7a178857ccabea37f000248385f514 (patch)
tree1c7a0f107955927b5e863203f757c9e18bbebbe5
parentb3fa7ed49edf0654c94dd66ee4d07d9973bf23b6 (diff)
downloadbuild-coordinator-b15be71ded7a178857ccabea37f000248385f514.tar
build-coordinator-b15be71ded7a178857ccabea37f000248385f514.tar.gz
Fix missing list in queue builds script
-rw-r--r--scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in
index 84d4acc..1f963da 100644
--- a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in
+++ b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in
@@ -220,8 +220,8 @@
((key . revision)
(value . ,commit))
,@(if branch
- `((key . branch)
- (value . ,branch))
+ `(((key . branch)
+ (value . ,branch)))
'()))))
(channel-instance-derivations-for-commit guix-data-service
commit
@@ -259,8 +259,8 @@
((key . revision)
(value . ,commit))
,@(if branch
- `((key . branch)
- (value . ,branch))
+ `(((key . branch)
+ (value . ,branch)))
'())))))
unprocessed-package-derivations)
(record-derivations-as-processed unprocessed-package-derivations))))