mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 17:05:07 +03:00
12 lines
173 B
Text
12 lines
173 B
Text
|
#!/bin/sh
|
||
|
|
||
|
exe="$(basename $0)"
|
||
|
|
||
|
if test -z "$TEA_PREFIX"
|
||
|
then
|
||
|
echo '$TEA_PREFIX mysteriously unset' >&2
|
||
|
exit 1
|
||
|
else
|
||
|
exec /usr/bin/"$exe" "$@" -rpath "$TEA_PREFIX"
|
||
|
fi
|