From ae5533c707148088a14130da7c3ca23bb113d309 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 26 Sep 2012 17:19:45 -0400 Subject: install a git-annex-shell shim script when the standalone OSX app runs I put it in ~/.ssh/ because there's no reliable way to get it into PATH, and OSX ssh doesn't even honor user's PATH by default. authorized_keys generators will need to check if it's there. Not done yet. --- ui-macos/git-annex.app/Contents/MacOS/runshell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui-macos/git-annex.app/Contents/MacOS/runshell') diff --git a/ui-macos/git-annex.app/Contents/MacOS/runshell b/ui-macos/git-annex.app/Contents/MacOS/runshell index 78ba3bf0c..ade917686 100755 --- a/ui-macos/git-annex.app/Contents/MacOS/runshell +++ b/ui-macos/git-annex.app/Contents/MacOS/runshell @@ -47,7 +47,7 @@ export GIT_EXEC_PATH if [ "$1" ]; then cmd="$1" shift 1 - "$cmd" "$@" + exec "$cmd" "$@" else $SHELL fi -- cgit v1.2.3