diff options
author | Arun Isaac | 2025-08-19 14:00:49 +0100 |
---|---|---|
committer | Arun Isaac | 2025-08-19 14:00:49 +0100 |
commit | f7724a8ee98d0d3ccab2dc67bd9cd3433da628c0 (patch) | |
tree | 21ca2106c9bfbf48d3c8be3156c7b5fc79bed8f7 /guix | |
parent | 2e7b78f51795f396e47ea0163042f51e2f78bc72 (diff) | |
download | guix-forge-f7724a8ee98d0d3ccab2dc67bd9cd3433da628c0.tar.gz guix-forge-f7724a8ee98d0d3ccab2dc67bd9cd3433da628c0.tar.lz guix-forge-f7724a8ee98d0d3ccab2dc67bd9cd3433da628c0.zip |
webhook: Configure absolute path to sh.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/forge/webhook.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/forge/webhook.scm b/guix/forge/webhook.scm index a13840d..c57686f 100644 --- a/guix/forge/webhook.scm +++ b/guix/forge/webhook.scm @@ -70,7 +70,9 @@ (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/github.com/adnanh/webhook/webhook_test.go" (("/bin/echo") - (search-input-file inputs "bin/echo")))))))) + (search-input-file inputs "bin/echo")) + (("/bin/sh") + (search-input-file inputs "bin/sh")))))))) (home-page "https://github.com/adnanh/webhook") (synopsis "Lightweight incoming webhook server") (description "webhook is a lightweight configurable tool written |