Fix the filename of the obfs4proxy binary on macOS

This commit is contained in:
Miguel Jacq 2021-03-05 13:34:56 +11:00
parent 9b89359eb0
commit 6858903550
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -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":