82615
|
1 |
#!/usr/bin/env bash
|
|
2 |
#
|
|
3 |
# Author: Makarius
|
|
4 |
#
|
|
5 |
# DESCRIPTION: invoke caddy within the Isabelle environment
|
|
6 |
|
|
7 |
if [ -z "$ISABELLE_CADDY" ]; then
|
|
8 |
echo "Missing Caddy installation: need to run \"isabelle caddy_setup\" first" >&2
|
|
9 |
exit 2
|
|
10 |
else
|
|
11 |
exec "$ISABELLE_CADDY" "$@"
|
|
12 |
fi
|