lib/scripts/ghc
author wenzelm
Sun, 10 Mar 2019 15:31:24 +0100
changeset 69890 cb643a1a5313
parent 69268 c1a27fce2076
child 69929 b979e3044d8e
permissions -rwxr-xr-x
PIDE markup for spell-checking;

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

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