summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaptak Sengupta <saptak013@gmail.com>2021-03-05 23:26:10 +0530
committerGitHub <noreply@github.com>2021-03-05 23:26:10 +0530
commitd733698b7a61f2d8f98bc81b72ae7d172b404a2d (patch)
tree8ced6d57dbf35a572261c7acc47fdf0b48021d33
parent9b89359eb057f17f5881c3955a3fc962ed2ac054 (diff)
parent685890355088f5940f23b659af3fc2096596cdfe (diff)
downloadonionshare-d733698b7a61f2d8f98bc81b72ae7d172b404a2d.tar.gz
onionshare-d733698b7a61f2d8f98bc81b72ae7d172b404a2d.zip
Merge pull request #1312 from mig5/fix_obfs4proxy_mac
Fix the filename of the obfs4proxy binary on macOS
-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":