aboutsummaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-07-13 13:39:56 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-07-13 13:39:56 +0200
commit24c1b21f041bd5d19393f3230598fd37b7ded76b (patch)
tree32ff73915e40ccf710dfd852fc34cc698dbf9eb1 /main
parentMinor cleanup. (diff)
downloadcalp-24c1b21f041bd5d19393f3230598fd37b7ded76b.tar.gz
calp-24c1b21f041bd5d19393f3230598fd37b7ded76b.tar.xz
main accepts GUILE env var.
Diffstat (limited to 'main')
-rwxr-xr-xmain4
1 files changed, 3 insertions, 1 deletions
diff --git a/main b/main
index 2d3e7e4a..f9bf296e 100755
--- a/main
+++ b/main
@@ -3,4 +3,6 @@
here=$(dirname $(realpath $0))
. $here/env
-exec guile -e main -s $here/module/main.scm "$@"
+GUILE=${GUILE:-guile}
+
+exec $GUILE -e main -s $here/module/main.scm "$@"