| author | wenzelm |
| Sat, 12 Oct 2024 22:05:37 +0200 | |
| changeset 81159 | c681b1a7b78e |
| parent 80013 | f1686f71dffc |
| permissions | -rwxr-xr-x |
#!/usr/bin/env bash # # Author: Makarius # # DESCRIPTION: invoke gofmt within the Isabelle environment if [ -z "$ISABELLE_GOEXE" ]; then echo "Missing Go installation: need to run \"isabelle go_setup\" first" >&2 exit 2 else export GOROOT="$(platform_path "$ISABELLE_GOROOT")" exec "$ISABELLE_GOEXE/gofmt" "$@" fi