mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-16 01:48:06 +02:00
Fix install.py script for arm7 so installs work on raspberry pis
This commit is contained in:
@ -19,7 +19,7 @@ if platform.system() == 'Linux' and platform.machine() == "x86_64":
|
|||||||
elif platform.system() == 'Linux' and platform.machine() == "aarch64":
|
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() == 'Linux' and platform.machine() == "armv7l":
|
elif platform.system() == 'Linux' and platform.machine() == "armv7l":
|
||||||
download_url = download_options['linux_arm_64_url']
|
download_url = download_options['linux_arm_7_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']
|
||||||
elif platform.system() == 'Darwin' and platform.machine() == 'x86_64':
|
elif platform.system() == 'Darwin' and platform.machine() == 'x86_64':
|
||||||
|
Reference in New Issue
Block a user