From 8b7606041629e6b1d3efabbdc8f1c1e2a0191476 Mon Sep 17 00:00:00 2001 From: Saku Laesvuori Date: Sat, 19 Apr 2025 14:38:45 +0300 Subject: [PATCH] =?UTF-8?q?FIXUP=20toimisko=20t=C3=A4=C3=A4=20quasiquote?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .guix/modules/tiedote-md-service.scm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.guix/modules/tiedote-md-service.scm b/.guix/modules/tiedote-md-service.scm index f2346cf..99dce0f 100644 --- a/.guix/modules/tiedote-md-service.scm +++ b/.guix/modules/tiedote-md-service.scm @@ -71,17 +71,17 @@ the tiedote.md user on this system.") (mkdir-p socket-directory) (chown socket-directory uid gid) (make-forkexec-constructor - `(,#$(file-append tiedote.md "/bin/tiedote.md") - "--address" ,#$email-address - "--sender-name" ,#$sender-name - "--sendmail" ,#$sendmail-path - "--socket" ,#$socket-path - "--repository" ,repo-path - "--port" ,#$(number->string port) - "--remote-url" ,#$remote-url - ,@(if #$(maybe-value-set? remote-branch) - (list "--remote-branch" #$remote-branch) - '()) + (list #$(file-append tiedote.md "/bin/tiedote.md") + "--address" #$email-address + "--sender-name" #$sender-name + "--sendmail" #$sendmail-path + "--socket" #$socket-path + "--repository" repo-path + "--port" #$(number->string port) + "--remote-url" #$remote-url + ;,@(if #$(maybe-value-set? remote-branch) + ; (list "--remote-branch" #$remote-branch) + ; '()) "server") #:user "tiedote.md" #:group "tiedote.md"