runshell: Avoid failing when $HOME/.ssh does not exist and cannot be created.

This commit is contained in:
Joey Hess 2015-11-10 11:42:06 -04:00
parent 428ffc14cc
commit 3e49f9fcab
Failed to extract signature
3 changed files with 18 additions and 12 deletions

View file

@ -64,12 +64,14 @@ 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"
if [ -e "$HOME/.ssh" ]; then
(
echo "#!/bin/sh"
echo "set -e"
echo "exec '$base/runshell' \"\$@\""
) > "$HOME/.ssh/git-annex-wrapper"
chmod +x "$HOME/.ssh/git-annex-wrapper"
fi
fi
# Put our binaries first, to avoid issues with out of date or incompatable