Scripts corrected

This commit is contained in:
Silas Vedder 2022-10-13 13:02:32 +02:00
parent 2e7be5e159
commit 89c529053b
3 changed files with 4 additions and 4 deletions

View File

@ -20,9 +20,9 @@
(method git-fetch)
(uri (git-reference
(url "https://git.silasvedder.xyz/silasfox/bible-tools.git")
(commit "9b6ff8e")))
(commit "2e7be5e")))
(file-name "bible-tools-1.0-checkout")
(sha256 (base32 "0rnmg8ni5swf04j0cf93nbl1z5353gq19fpw2xa9p2zad7phnw52"))))
(sha256 (base32 "0l3ndyzy6sq1cdkaklhyg1mvy6hsil7b86wk3nbs5mqgrcypar1z"))))
(build-system gnu-build-system)
(arguments
`(#:modules

View File

@ -1,5 +1,5 @@
#! /usr/bin/env sh
exec guile -l bible-tools.scm -e '(@ (bible2latex) main)' -s bible2latex "$@"
exec guile -e '(@ (bible2latex) main)' -s "$0" "$@"
!#
(define-module (bible2latex)

View File

@ -1,5 +1,5 @@
#! /usr/bin/env sh
exec guile -l bible-tools.scm -e '(@ (count-words) main)' -s count-words "$@"
exec guile -e '(@ (count-words) main)' -s "$0" "$@"
!#
(define-module (count-words)