From 89c529053bfca1f90b91dad76f0cb250ee3185d2 Mon Sep 17 00:00:00 2001 From: Silas Vedder Date: Thu, 13 Oct 2022 13:02:32 +0200 Subject: [PATCH] Scripts corrected --- guix.scm | 4 ++-- scripts/bible2latex.in | 2 +- scripts/count-words.in | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/guix.scm b/guix.scm index 105a812..8c2dc3a 100644 --- a/guix.scm +++ b/guix.scm @@ -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 diff --git a/scripts/bible2latex.in b/scripts/bible2latex.in index e358231..6d72f21 100755 --- a/scripts/bible2latex.in +++ b/scripts/bible2latex.in @@ -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) diff --git a/scripts/count-words.in b/scripts/count-words.in index b0c1bdd..8cb05a9 100755 --- a/scripts/count-words.in +++ b/scripts/count-words.in @@ -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)