mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
Fix the macOS download logic for Python 3.x
This commit is contained in:
@@ -75,7 +75,7 @@ class FridaPrebuiltExt(build_ext):
|
||||
if system == 'Windows':
|
||||
os_version = "win-amd64" if arch == 64 else "win32"
|
||||
elif system == 'Darwin':
|
||||
os_version = "macosx-10.6-intel" if python_major_version == 3 else "macosx-10.9-intel"
|
||||
os_version = "macosx-10.9-x86_64" if python_major_version == 3 else "macosx-10.9-intel"
|
||||
elif system == 'Linux':
|
||||
machine = platform.machine()
|
||||
if machine == "" or "86" in machine:
|
||||
|
||||
Reference in New Issue
Block a user