mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-13 16:57:23 +02:00
Add support for arm7 for #63 to support raspberry pis
This commit is contained in:
@ -18,6 +18,8 @@ if platform.system() == 'Linux' and platform.machine() == "x86_64":
|
||||
download_url = download_options['linux_amd_64_url']
|
||||
elif platform.system() == 'Linux' and platform.machine() == "aarch64":
|
||||
download_url = download_options['linux_arm_64_url']
|
||||
elif platform.system() == 'Linux' and platform.machine() == "armv7l":
|
||||
download_url = download_options['linux_arm_64_url']
|
||||
elif platform.system() == 'Darwin' and platform.machine() == 'arm64':
|
||||
download_url = download_options['darwin_arm_64_url']
|
||||
elif platform.system() == 'Darwin' and platform.machine() == 'x86_64':
|
||||
|
Reference in New Issue
Block a user