From 685890355088f5940f23b659af3fc2096596cdfe Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Fri, 5 Mar 2021 13:34:56 +1100 Subject: [PATCH] Fix the filename of the obfs4proxy binary on macOS --- desktop/src/onionshare/gui_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/onionshare/gui_common.py b/desktop/src/onionshare/gui_common.py index cd576ea2..bd72246a 100644 --- a/desktop/src/onionshare/gui_common.py +++ b/desktop/src/onionshare/gui_common.py @@ -391,7 +391,7 @@ class GuiCommon: elif self.common.platform == "Darwin": base_path = self.get_resource_path("tor") tor_path = os.path.join(base_path, "tor") - obfs4proxy_file_path = os.path.join(base_path, "obfs4proxy.exe") + obfs4proxy_file_path = os.path.join(base_path, "obfs4proxy") tor_geo_ip_file_path = os.path.join(base_path, "geoip") tor_geo_ipv6_file_path = os.path.join(base_path, "geoip6") elif self.common.platform == "BSD":