aboutsummaryrefslogtreecommitdiff
path: root/bwrap-files/workdir
diff options
context:
space:
mode:
Diffstat (limited to 'bwrap-files/workdir')
-rwxr-xr-xbwrap-files/workdir/entry.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/bwrap-files/workdir/entry.sh b/bwrap-files/workdir/entry.sh
index 1a466da..ce66a8d 100755
--- a/bwrap-files/workdir/entry.sh
+++ b/bwrap-files/workdir/entry.sh
@@ -3,4 +3,13 @@ set -euo pipefail
cd "$(dirname "$0")"
-ghcup --offline run -- ghci Yahb2Defs.hs 2>&1
+ver=$(ghcup --offline list -t ghc -c installed -r 2>/dev/null | sed -n '/latest/ s/^ghc \([^ ]*\).*/\1/p')
+if [[ -n $ver ]]; then
+ versionargs=( --ghc "$ver" ) # if we can get "latest", take that
+else
+ versionargs=() # just fall back to the currently "set" version
+fi
+
+ghcup --offline run "${versionargs[@]}" -- ghci Yahb2Defs.hs 2>&1
+
+# vim: set sw=2 ts=8 et: