mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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
This commit is contained in:
parent
0c6fe1a1e7
commit
045ee8ec77
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ each retry."
|
||||||
((sleep*) delay) ;else wait and retry
|
((sleep*) delay) ;else wait and retry
|
||||||
(loop (+ 1 attempts)))
|
(loop (+ 1 attempts)))
|
||||||
(error "maximum number of retry attempts reached"
|
(error "maximum number of retry attempts reached"
|
||||||
(quote body ...) args))))))
|
(quote (begin body ...)) args))))))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue