diff options
Diffstat (limited to 'guix')
-rw-r--r-- | guix/forge/webhook.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/forge/webhook.scm b/guix/forge/webhook.scm index 737b9e6..0408e91 100644 --- a/guix/forge/webhook.scm +++ b/guix/forge/webhook.scm @@ -144,7 +144,8 @@ Everything else is the responsibility of the command's author.") (map (cut map (cut apply cons <>) <>) '#$(map (lambda (hook) `(("id" ,(webhook-hook-id hook)) - ("execute-command" ,(program-file (webhook-hook-id hook) + ("execute-command" ,(program-file (string-append (webhook-hook-id hook) + "-webhook") (webhook-hook-run hook))))) (webhook-configuration-hooks config)))) <>))))) |