summaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-12-29 18:29:25 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-12-30 22:42:06 +0900
commit045ee8ec77411ae90a594a8adb54896b08630d82 (patch)
treee2bbb3d1b94b2bf0cfa820029ebbe83d5a3c5b34 /gnu/build
parent0c6fe1a1e76b2dea8266efcd9495e4b9a1c77fbd (diff)
build/dbus-service: Fix possible syntax error in 'with-retries'.
When the body was not a single expression, quote would throw a syntax error. * gnu/build/dbus-service.scm (with-retries): Ensure the body is a single expression when quoted for the error message. Change-Id: I44ec61bc26c8959b499bc94eb661762afdaf99ba
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/dbus-service.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/dbus-service.scm b/gnu/build/dbus-service.scm
index 8e067016f00..fae277dd3e3 100644
--- a/gnu/build/dbus-service.scm
+++ b/gnu/build/dbus-service.scm
@@ -91,7 +91,7 @@ each retry."
91 ((sleep*) delay) ;else wait and retry 91 ((sleep*) delay) ;else wait and retry
92 (loop (+ 1 attempts))) 92 (loop (+ 1 attempts)))
93 (error "maximum number of retry attempts reached" 93 (error "maximum number of retry attempts reached"
94 (quote body ...) args)))))) 94 (quote (begin body ...)) args))))))
95 95
96 96
97;;; 97;;;