aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-06-02 19:32:05 +0100
committerChristopher Baines <mail@cbaines.net>2020-06-02 19:32:05 +0100
commitf034f62518771856bb39e239c1634c2f8fdcb156 (patch)
treea38dde4db061babb0a33e3142900cc0dcf10c143
parentbadea855360a137ab127f36af29aef1c3b3feeb1 (diff)
downloadbuild-coordinator-f034f62518771856bb39e239c1634c2f8fdcb156.tar
build-coordinator-f034f62518771856bb39e239c1634c2f8fdcb156.tar.gz
Use the %processed-commits-file variable in place of the string
In the queue builds script.
-rw-r--r--scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in2
1 files changed, 1 insertions, 1 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 bec84b6..10c11d1 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
@@ -90,7 +90,7 @@
(assoc-ref data "revisions")))))
(define (record-revision-as-processed commit)
- (let ((port (open-file "processed-revisions" "a")))
+ (let ((port (open-file %processed-commits-file "a")))
(simple-format port "~A\n" commit)
(close-port port))