summaryrefslogtreecommitdiff
path: root/standalone/osx
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-12-07 14:44:44 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-12-07 14:44:44 -0400
commit602f406b4a74b26b32c3af8ba20d5bebcebdc5d9 (patch)
tree318e2bec3df7100669339153cd42ed1e61071c4e /standalone/osx
parent16fe3b646a16a86fe497ac95faff45787bda7f4e (diff)
runshell: start sh, not $SHELL
$SHELL may need libraries not included in the bundle
Diffstat (limited to 'standalone/osx')
-rwxr-xr-xstandalone/osx/git-annex.app/Contents/MacOS/runshell2
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell
index 51748285a..ade1dd3f6 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