FIXUP toimisko tää quasiquote

This commit is contained in:
Saku Laesvuori 2025-04-19 14:38:45 +03:00
parent 32895539a3
commit c608e965b4
Signed by: slaesvuo
GPG Key ID: 257D284A2A1D3A32

View File

@ -71,17 +71,17 @@ the tiedote.md user on this system.")
(mkdir-p socket-directory) (mkdir-p socket-directory)
(chown socket-directory uid gid) (chown socket-directory uid gid)
(make-forkexec-constructor (make-forkexec-constructor
`(,#$(file-append tiedote.md "/bin/tiedote.md") (list #$(file-append tiedote.md "/bin/tiedote.md")
"--address" ,#$email-address "--address" #$email-address
"--sender-name" ,#$sender-name "--sender-name" #$sender-name
"--sendmail" ,#$sendmail-path "--sendmail" #$sendmail-path
"--socket" ,#$socket-path "--socket" #$socket-path
"--repository" ,repo-path "--repository" repo-path
"--port" ,#$(number->string port) "--port" #$(number->string port)
"--remote-url" ,#$remote-url "--remote-url" #$remote-url
,@(if #$(maybe-value-set? remote-branch) ;,@(if #$(maybe-value-set? remote-branch)
(list "--remote-branch" #$remote-branch) ; (list "--remote-branch" #$remote-branch)
'()) ; '())
"server") "server")
#:user "tiedote.md" #:user "tiedote.md"
#:group "tiedote.md" #:group "tiedote.md"