mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-10 15:10:37 +02:00
services: cuirass: Really allow ‘parameters’ to be a file-like object.
This is a followup to 7238114911.
* gnu/services/cuirass.scm (cuirass-shepherd-service): Turn
‘--parameters=’ bit into a gexp.
Change-Id: I5dd886b90ecea45157873e9c701e34988d6d31cc
This commit is contained in:
@@ -220,9 +220,8 @@
|
||||
"--listen" #$host
|
||||
"--port" #$(number->string port)
|
||||
#$@(if parameters
|
||||
(list (string-append
|
||||
"--parameters="
|
||||
parameters))
|
||||
(list #~(string-append "--parameters="
|
||||
#$parameters))
|
||||
'())
|
||||
#$@web-extra-options)
|
||||
|
||||
@@ -259,9 +258,8 @@
|
||||
(number->string publish-port)))
|
||||
'())
|
||||
#$@(if parameters
|
||||
(list (string-append
|
||||
"--parameters="
|
||||
parameters))
|
||||
(list #~(string-append "--parameters="
|
||||
#$parameters))
|
||||
'())
|
||||
#$@(if trigger-url
|
||||
(list
|
||||
|
||||
Reference in New Issue
Block a user