aboutsummaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2021-03-05 13:34:56 +1100
committerMiguel Jacq <mig@mig5.net>2021-03-05 13:34:56 +1100
commit685890355088f5940f23b659af3fc2096596cdfe (patch)
tree8ced6d57dbf35a572261c7acc47fdf0b48021d33 /desktop
parent9b89359eb057f17f5881c3955a3fc962ed2ac054 (diff)
downloadonionshare-685890355088f5940f23b659af3fc2096596cdfe.tar.gz
onionshare-685890355088f5940f23b659af3fc2096596cdfe.zip
Fix the filename of the obfs4proxy binary on macOS
Diffstat (limited to 'desktop')
-rw-r--r--desktop/src/onionshare/gui_common.py2
1 files changed, 1 insertions, 1 deletions
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":