git-annex/standalone/osx/git-annex.app/Contents/MacOS/runshell

65 lines
1.4 KiB
Text
Raw Normal View History

2012-09-24 23:40:21 +00:00
#!/bin/sh
2012-12-09 16:59:34 +00:00
# Runs a shell command (or interactive shell) using the binaries
# bundled with this app.
2012-09-25 15:58:36 +00:00
2012-09-24 23:40:21 +00:00
set -e
base="$(dirname $0)"
if [ ! -d "$base" ]; then
echo "** cannot find base directory (I seem to be $0)" >&2
exit 1
fi
2012-12-08 21:14:09 +00:00
if [ ! -e "$base/git-annex" ]; then
echo "** base directory $base does not contain git-annex" >&2
2012-09-24 23:40:21 +00:00
exit 1
fi
2012-12-08 21:14:09 +00:00
if [ ! -e "$base/git" ]; then
echo "** base directory $base does not contain git" >&2
2012-09-24 23:40:21 +00:00
exit 1
fi
# Get absolute path to base, to avoid breakage when things change directories.
orig="$(pwd)"
cd "$base"
base="$(pwd)"
cd "$orig"
2012-10-29 18:48:13 +00:00
# Install shim that's used to run git-annex-shell from ssh authorized_keys.
# The assistant also does this when run, but the user may not be using the
# assistant.
if [ ! -e "$HOME/.ssh/git-annex-shell" ]; then
mkdir "$HOME/.ssh" >/dev/null 2>&1 || true
(
echo "#!/bin/sh"
echo "set -e"
echo "exec $base/runshell git-annex-shell -c \"\$SSH_ORIGINAL_COMMAND\""
) > "$HOME/.ssh/git-annex-shell"
chmod +x "$HOME/.ssh/git-annex-shell"
fi
2012-09-25 15:58:36 +00:00
# Put our binaries first, to avoid issues with out of date or incompatable
2012-09-24 23:40:21 +00:00
# system binaries.
ORIG_PATH="$PATH"
export ORIG_PATH
2012-12-10 19:11:25 +00:00
PATH=$base:$PATH
2012-09-24 23:40:21 +00:00
export PATH
ORIG_GIT_EXEC_PATH="$GIT_EXEC_PATH"
export ORIG_GIT_EXEC_PATH
GIT_EXEC_PATH=$base
2012-09-24 23:40:21 +00:00
export GIT_EXEC_PATH
# Indicate which variables were exported above.
GIT_ANNEX_STANDLONE_ENV="PATH GIT_EXEC_PATH"
export GIT_ANNEX_STANDLONE_ENV
2012-09-24 23:40:21 +00:00
if [ "$1" ]; then
cmd="$1"
shift 1
exec "$cmd" "$@"
2012-09-24 23:40:21 +00:00
else
sh
2012-09-24 23:40:21 +00:00
fi