2012-11-28 16:09:38 -04:00
|
|
|
#!/bin/sh
|
2014-05-16 16:22:50 -04:00
|
|
|
link="$(readlink -f "$0" 2>/dev/null || readlink "$0")" || true
|
2013-12-15 15:57:41 -04:00
|
|
|
if [ -n "$link" ]; then
|
|
|
|
base="$(dirname "$link")"
|
|
|
|
else
|
|
|
|
base="$(dirname "$0")"
|
|
|
|
fi
|
|
|
|
|
2012-11-28 16:09:38 -04: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-12-24 16:28:10 -04:00
|
|
|
exec "$base/runshell" git "$@"
|