lib/scripts/ghc
author nipkow
Thu, 21 Mar 2019 19:46:12 +0100
changeset 69943 deb05b4c48ba
parent 69929 b979e3044d8e
child 69949 a7a0115061ec
permissions -rwxr-xr-x
tuyned

#!/usr/bin/env bash
#
# Author: Makarius
#
# Invoke ghc via "stack".

if [ -e "$ISABELLE_STACK_ROOT/config.yaml" ]; then
  isabelle_stack ghc -- "$@"
else
  echo "Cannot execute ghc: missing Isabelle GHC setup" >&2
  exit 127
fi