diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-07 14:44:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-07 14:44:44 -0400 |
commit | 602f406b4a74b26b32c3af8ba20d5bebcebdc5d9 (patch) | |
tree | 318e2bec3df7100669339153cd42ed1e61071c4e /standalone/osx | |
parent | 16fe3b646a16a86fe497ac95faff45787bda7f4e (diff) |
runshell: start sh, not $SHELL
$SHELL may need libraries not included in the bundle
Diffstat (limited to 'standalone/osx')
-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 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 |