diff --git a/tor/libevent-2.0.5.dylib b/tor/libevent-2.0.5.dylib index a1a0af5..a8ae316 100755 Binary files a/tor/libevent-2.0.5.dylib and b/tor/libevent-2.0.5.dylib differ diff --git a/tor/tor b/tor/tor index 03d6f9d..78b3348 100755 --- a/tor/tor +++ b/tor/tor @@ -8,4 +8,8 @@ export DYLD_LIBRARY_PATH=.:$DYLD_LIBRARY_PATH # otherwise set to "/" when an application bundle is started from Finder. # https://trac.torproject.org/projects/tor/ticket/10030 cd "$(dirname "$0")" +if [ ! -f tor.real -a -d ../../../MacOS/Tor ]; then + # On newer releases of Tor Browser, tor.real is in Contents/MacOS/Tor/. + cd ../../../MacOS/Tor +fi exec ./tor.real "$@" diff --git a/tor/tor.real b/tor/tor.real index 8e8ea10..6cedc54 100755 Binary files a/tor/tor.real and b/tor/tor.real differ