| author | Fabian Huch <huch@in.tum.de> |
| Mon, 10 Jun 2024 16:14:44 +0200 | |
| changeset 80338 | 5a6cc89c8f98 |
| parent 69948 | a591de179931 |
| permissions | -rwxr-xr-x |
#!/usr/bin/env bash # # Author: Makarius; Florian Haftmann # # Invoke ocamlfind via "opam". if [ -d "$ISABELLE_OPAM_ROOT/$ISABELLE_OCAML_VERSION/bin" ] then isabelle_opam config exec --switch "$ISABELLE_OCAML_VERSION" -- ocamlfind "$@" else echo "Cannot execute ocamlfind: missing Isabelle OCaml setup" >&2 exit 127 fi