lib/Tools/dotnet
author wenzelm
Wed, 12 Mar 2025 11:39:00 +0100
changeset 82265 4b875a4c83b0
parent 80010 6964a23f595a
permissions -rwxr-xr-x
update for release;

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