diff options
author | Andrew Lewman <andrew@torproject.org> | 2008-04-14 23:30:39 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2008-04-14 23:30:39 +0000 |
commit | c5c856b295652b7ff30f8037e3a2bf081e2f4a10 (patch) | |
tree | d31b3aab5b72040fd488dc408475e95d06679a39 /contrib | |
parent | 67916707b54bfe89ad766bc0a8aff30fa75c81a6 (diff) | |
download | tor-c5c856b295652b7ff30f8037e3a2bf081e2f4a10.tar.gz tor-c5c856b295652b7ff30f8037e3a2bf081e2f4a10.zip |
Ohh, the proper way to start an app from a script is "open".
svn:r14368
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/osx/TorPostflight | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/osx/TorPostflight b/contrib/osx/TorPostflight index 00a91b9c99..456a8a839d 100644 --- a/contrib/osx/TorPostflight +++ b/contrib/osx/TorPostflight @@ -124,6 +124,6 @@ fi if [ -f /Applications/Firefox.app/Contents/MacOS/firefox ]; then if [ -f $TARGET/torbutton-$TORBUTTON_VERSION.xpi ]; then # Open firefox with a prompt to install the torbutton xpi - su $USER /Applications/Firefox.app/Contents/MacOS/firefox $TARGET/torbutton-$TORBUTTON_VERSION.xpi + su $USER open -a /Applications/Firefox.app $TARGET/torbutton-$TORBUTTON_VERSION.xpi fi fi |