2013-05-31 21:02:09 +00:00
|
|
|
#!/bin/sh
|
2014-05-16 20:22:50 +00:00
|
|
|
link="$(readlink -f "$0" 2>/dev/null || readlink "$0")" || true
|
2013-12-15 19:57:41 +00:00
|
|
|
if [ -n "$link" ]; then
|
|
|
|
base="$(dirname "$link")"
|
|
|
|
else
|
|
|
|
base="$(dirname "$0")"
|
|
|
|
fi
|
|
|
|
|
2013-05-31 21:02:09 +00:00
|
|
|
if [ ! -d "$base" ]; then
|
|
|
|
echo "** cannot find base directory (I seem to be $0)" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -e "$base/runshell" ]; then
|
|
|
|
echo "** cannot find $base/runshell" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get absolute path to base, to avoid breakage when things change directories.
|
|
|
|
orig="$(pwd)"
|
|
|
|
cd "$base"
|
|
|
|
base="$(pwd)"
|
|
|
|
cd "$orig"
|
|
|
|
|
2013-07-23 21:31:51 +00:00
|
|
|
exec "$base/runshell" git-annex-shell "$@"
|