author | haftmann |
Thu, 14 Mar 2019 19:06:40 +0100 | |
changeset 69911 | 036037573080 |
parent 69500 | db001bc11855 |
child 69924 | 512ac874bb9d |
permissions | -rwxr-xr-x |
69135 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
3 |
# Author: Makarius |
|
4 |
# |
|
69500 | 5 |
# DESCRIPTION: setup OCaml via OPAM |
69135 | 6 |
|
69911 | 7 |
set -e |
8 |
||
69139 | 9 |
if [ -d "$ISABELLE_OPAM_ROOT" ] |
10 |
then |
|
11 |
isabelle_opam switch "$ISABELLE_OCAML_VERSION" |
|
12 |
else |
|
13 |
isabelle_opam init --no-setup --compiler="$ISABELLE_OCAML_VERSION" |
|
14 |
fi |
|
69911 | 15 |
|
16 |
isabelle_opam install zarith |