diff -r 629868f96c81 -r 8ddf6728ad80 lib/scripts/getfunctions --- a/lib/scripts/getfunctions Tue Apr 13 16:19:43 2021 +0200 +++ b/lib/scripts/getfunctions Wed Apr 14 14:28:30 2021 +0200 @@ -21,15 +21,8 @@ export -f platform_path standard_path #GNU tar (notably on macOS) -if type -p gnutar >/dev/null -then - function tar() { gnutar "$@"; } - export -f tar -elif type -p gtar >/dev/null -then - function tar() { gtar "$@"; } - export -f tar -fi +function tar() { "${ISABELLE_TAR:-false}" "$@"; } +export -f tar #OCaml management via OPAM function isabelle_opam ()