From b82a893e308bb5fbc012cd0781566c8997bc9702 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Mon, 6 Jan 2025 19:36:15 +0300 Subject: gn-guile: Add missing quotes around patche "git" command. * gn/packages/guile.scm: (gn-guile): Add missing quotes around "git" command. Signed-off-by: Munyoki Kilyungi --- gn/packages/guile.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn/packages') diff --git a/gn/packages/guile.scm b/gn/packages/guile.scm index cbc5595..3b30b82 100644 --- a/gn/packages/guile.scm +++ b/gn/packages/guile.scm @@ -152,7 +152,7 @@ for MySQL.") (lambda* (#:key inputs #:allow-other-keys) (let ((git (assoc-ref inputs "git-minimal"))) (substitute* "web/view/markdown.scm" - (("\"git\"") (string-append git "/bin/git")))))) + (("\"git\"") (string-append "\"" git "/bin/git" "\"")))))) (add-after 'build 'install-script (lambda* _ (let* ((bash #$(this-package-input "bash-minimal")) -- cgit v1.2.3