diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-17 12:20:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-17 12:20:44 -0400 |
commit | 7d4b7ba77f88e1b85a7e4d11dbf4a2995aacc43d (patch) | |
tree | d3e33baeb953cd6d9ec3e23abb7c22614ba26b6b | |
parent | ae7a5d2e0c3e967ee98cc2c1cc684ee8954162f6 (diff) |
back to $SHELL for OSX app
This is safe because we no longer mess with LD_PRELOAD equivilants.
Since the linux standalone bundle still does, it continues to run sh.
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 2 |
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 bdeee6d97..211f174fc 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -65,5 +65,5 @@ if [ "$1" ]; then shift 1 exec "$cmd" "$@" else - sh + $SHELL fi |