author | wenzelm |
Fri, 09 Feb 2018 11:14:13 +0100 | |
changeset 67580 | eb64467e8bcf |
parent 63229 | f951c624c1a1 |
permissions | -rwxr-xr-x |
33833 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
63229
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
3 |
# Portable Poly/ML command-line tool |
33833 | 4 |
|
5 |
THIS="$(cd "$(dirname "$0")"; pwd)" |
|
6 |
||
7 |
export DYLD_LIBRARY_PATH="$THIS:$DYLD_LIBRARY_PATH" |
|
8 |
||
63229
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
9 |
if type -p rlwrap > /dev/null |
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
10 |
then |
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
11 |
exec rlwrap "$THIS/poly" "$@" |
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
12 |
else |
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
13 |
exec "$THIS/poly" "$@" |
f951c624c1a1
updated to recent changes of Poly/ML directory layout;
wenzelm
parents:
60983
diff
changeset
|
14 |
fi |