lib/Tools/caddy
author wenzelm
Sun, 21 Sep 2025 14:22:14 +0200
changeset 83205 99ce7933db6d
parent 82615 3e20da339306
permissions -rwxr-xr-x
clarified signature: explicit domain for Nodes_Status 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