aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-04-14 00:08:03 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-04-14 10:34:52 +0900
commit25f86fdc4fe13cf405c1556db361cc0151ff5da8 (patch)
tree2c66489bea1470be499a9a259144ccd8f97f2858
parente78f8a85bb0b8511864fa0dc831f992c4c6ed17c (diff)
downloadguix-25f86fdc4fe13cf405c1556db361cc0151ff5da8.tar.gz
guix-25f86fdc4fe13cf405c1556db361cc0151ff5da8.zip
build: dbus-service: Quote body argument in 'with-retries' syntax.
Otherwise the code would be evaluated instead of shown. * gnu/build/dbus-service.scm (with-retries): Quote the body data in the error message. Change-Id: I7a06f08327bdc7df70ae56a146855bc32ad3e63e
-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 3ae45ad755..688afe44c3 100644
--- a/gnu/build/dbus-service.scm
+++ b/gnu/build/dbus-service.scm
@@ -91,7 +91,7 @@ each retry."
((sleep*) delay) ;else wait and retry
(loop (+ 1 attempts)))
(error "maximum number of retry attempts reached"
- body ... args))))))
+ (quote body ...) args))))))
;;;