commit 271be4203c61bac3507af2f30696170ebb892082 parent a9ef036050c9866a3f142193b4cb198ea49b3313 Author: Yuval Langer <yuval.langer@gmail.com> Date: Mon, 19 Jun 2023 14:46:08 +0300 Fix the hashbang calling of the main member of the clipboard-speaker Guile module. Diffstat:
M | clipboard-speaker.scm | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/clipboard-speaker.scm b/clipboard-speaker.scm @@ -1,7 +1,8 @@ -#!/usr/bin/env -S guile -e main -s +#!/usr/bin/env -S guile -e '(@ (clipboard-speaker) main)' -s !# -(define-module (clipboard-speaker)) +(define-module (clipboard-speaker) + #:export (main)) (use-modules (ice-9 match) (ice-9 popen)