lib/Tools/caddy
author haftmann
Mon, 09 Jun 2025 22:14:38 +0200
changeset 82691 b69e4da2604b
parent 82615 3e20da339306
permissions -rwxr-xr-x
more qualified auxiliary operations

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