also add shim from OSX runshell

This commit is contained in:
Joey Hess 2012-10-29 14:48:13 -04:00
parent f89d6dd33e
commit e14504ce47

View file

@ -26,6 +26,19 @@ cd "$base"
base="$(pwd)" base="$(pwd)"
cd "$orig" cd "$orig"
# 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
# Put our binaries first, to avoid issues with out of date or incompatable # Put our binaries first, to avoid issues with out of date or incompatable
# system binaries. # system binaries.
PATH=$base/bin:$PATH PATH=$base/bin:$PATH