lib/scripts/ghc
author Manuel Eberl <eberlm@in.tum.de>
Fri, 14 Dec 2018 14:33:26 +0100
changeset 69716 749aaeb40788
parent 69268 c1a27fce2076
child 69929 b979e3044d8e
permissions -rwxr-xr-x
Added triangular numbers

#!/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