From e597ce0c2b78de2047c0d6da5f4aefdb648d04e8 Mon Sep 17 00:00:00 2001 From: Baccount Date: Thu, 18 Jan 2018 22:29:35 -0800 Subject: [PATCH] Update get-tor-osx.py --- install/get-tor-osx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/get-tor-osx.py b/install/get-tor-osx.py index f3ab48dc..f6b04aa4 100644 --- a/install/get-tor-osx.py +++ b/install/get-tor-osx.py @@ -88,8 +88,8 @@ def main(): shutil.copyfile(os.path.join(dmg_tor_path, 'MacOS', 'Tor', 'PluggableTransports', 'obfs4proxy'), os.path.join(dist_path, 'Resources', 'Tor', 'obfs4proxy')) os.chmod(os.path.join(dist_path, 'Resources', 'Tor', 'obfs4proxy'), 0o755) - # Unmount dmg - subprocess.call(['diskutil', 'unmount', '/Volumes/Tor Browser']) + # Eject dmg + subprocess.call(['diskutil', 'eject', '/Volumes/Tor Browser']) if __name__ == '__main__': main()