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

87 lines
2.1 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
2013-03-20 18:11:36 +00:00
base="$(dirname "$0")"
2012-09-24 23:40:21 +00:00
if [ ! -d "$base" ]; then
echo "** cannot find base directory (I seem to be $0)" >&2
exit 1
fi
bundle="$base/bundle"
if [ ! -e "$bundle/git-annex" ]; then
echo "** bundle directory $bundle does not contain git-annex" >&2
2012-09-24 23:40:21 +00:00
exit 1
fi
2013-03-20 18:07:51 +00:00
if [ ! -e "$bundle/git" ]; then
echo "** bundle directory $bundle 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 "if [ \"x\$SSH_ORIGINAL_COMMAND\" != \"x\" ]; then"
2012-10-29 18:48:13 +00:00
echo "exec $base/runshell git-annex-shell -c \"\$SSH_ORIGINAL_COMMAND\""
echo "else"
echo "exec $base/runshell git-annex-shell -c \"\$@\""
echo "fi"
2012-10-29 18:48:13 +00:00
) > "$HOME/.ssh/git-annex-shell"
chmod +x "$HOME/.ssh/git-annex-shell"
fi
# And this shim is used by the webapp when adding a remote ssh server.
if [ ! -e "$HOME/.ssh/git-annex-wrapper" ]; then
mkdir "$HOME/.ssh" >/dev/null 2>&1 || true
(
echo "#!/bin/sh"
echo "set -e"
echo "exec $base/runshell \"\$@\""
) > "$HOME/.ssh/git-annex-wrapper"
chmod +x "$HOME/.ssh/git-annex-wrapper"
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
PATH=$bundle:$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=$bundle
2012-09-24 23:40:21 +00:00
export GIT_EXEC_PATH
ORIG_GIT_TEMPLATE_DIR="$GIT_TEMPLATE_DIR"
export ORIG_GIT_TEMPLATE_DIR
GIT_TEMPLATE_DIR="$bundle/templates"
export GIT_TEMPLATE_DIR
# Indicate which variables were exported above.
GIT_ANNEX_STANDLONE_ENV="PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR"
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
$SHELL
2012-09-24 23:40:21 +00:00
fi