lib/Tools/dotnet
author paulson <lp15@cam.ac.uk>
Thu, 16 Feb 2023 12:21:21 +0000
changeset 77277 c6b50597abbc
parent 76459 2829aae7408a
child 80010 6964a23f595a
permissions -rwxr-xr-x
More of Eberl's contributions: memomorphic functions

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: invoke the dotnet CLI driver within the Isabelle environment

if [ -z "$ISABELLE_DOTNET" ]; then
  echo "Missing dotnet installation: need to run \"isabelle dotnet_setup\" first" >&2
  exit 2
else
  exec "$ISABELLE_DOTNET" "$@"
fi