linux arm is called aarch64, see #48

This commit is contained in:
David Dworken 2022-12-12 19:45:54 -08:00
parent 83667a52f4
commit 956377d472
No known key found for this signature in database

View File

@ -16,7 +16,7 @@ download_options = json.loads(resp_body)
if platform.system() == 'Linux' and platform.machine() == "x86_64":
download_url = download_options['linux_amd_64_url']
elif platform.system() == 'Linux' and platform.machine() == "arm64":
elif platform.system() == 'Linux' and platform.machine() == "aarch64":
download_url = download_options['linux_arm_64_url']
elif platform.system() == 'Darwin' and platform.machine() == 'arm64':
download_url = download_options['darwin_arm_64_url']