From 0931ad6be876b4f1845c4a9291e817f2d9301d65 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 7 Dec 2012 14:44:44 -0400 Subject: [PATCH] runshell: start sh, not $SHELL $SHELL may need libraries not included in the bundle --- standalone/linux/runshell | 2 +- standalone/osx/git-annex.app/Contents/MacOS/runshell | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/standalone/linux/runshell b/standalone/linux/runshell index 816c3036e1..e3d75d7a06 100755 --- a/standalone/linux/runshell +++ b/standalone/linux/runshell @@ -67,5 +67,5 @@ if [ "$1" ]; then shift 1 exec "$cmd" "$@" else - $SHELL + sh fi diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index 51748285a9..ade1dd3f6a 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -74,5 +74,5 @@ if [ "$1" ]; then shift 1 exec "$cmd" "$@" else - $SHELL + sh fi