mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-17 18:31:43 +02:00
linux arm is called aarch64, see #48
This commit is contained in:
@@ -16,7 +16,7 @@ download_options = json.loads(resp_body)
|
|||||||
|
|
||||||
if platform.system() == 'Linux' and platform.machine() == "x86_64":
|
if platform.system() == 'Linux' and platform.machine() == "x86_64":
|
||||||
download_url = download_options['linux_amd_64_url']
|
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']
|
download_url = download_options['linux_arm_64_url']
|
||||||
elif platform.system() == 'Darwin' and platform.machine() == 'arm64':
|
elif platform.system() == 'Darwin' and platform.machine() == 'arm64':
|
||||||
download_url = download_options['darwin_arm_64_url']
|
download_url = download_options['darwin_arm_64_url']
|
||||||
|
Reference in New Issue
Block a user