lib/Tools/caddy
author paulson <lp15@cam.ac.uk>
Fri, 08 Aug 2025 16:46:03 +0100
changeset 82969 dedd9d13c79c
parent 82615 3e20da339306
permissions -rwxr-xr-x
Generalised a theorem about Lebesgue integration

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

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