lib/Tools/caddy
author wenzelm
Mon, 27 Oct 2025 15:16:32 +0100
changeset 83417 b51e4a526897
parent 82615 3e20da339306
permissions -rwxr-xr-x
clarified signature;

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