diff options
author | Munyoki Kilyungi | 2025-01-06 19:36:15 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-01-06 19:36:15 +0300 |
commit | b82a893e308bb5fbc012cd0781566c8997bc9702 (patch) | |
tree | 39114668f8ac3c59dd41e6c4d2ad6495e092e909 /gn/packages | |
parent | 56f2a508678e83c8778cda8057be4355d436ff5d (diff) | |
download | guix-bioinformatics-b82a893e308bb5fbc012cd0781566c8997bc9702.tar.gz |
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 <me@bonfacemunyoki.com>
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/guile.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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")) |