We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4409e3 commit 0d53a72Copy full SHA for 0d53a72
tools/get.py
@@ -159,7 +159,7 @@ def identify_platform():
159
sys_name = platform.system()
160
sys_platform = platform.platform()
161
print('System: %s, Info: %s' % (sys_name, sys_platform))
162
- if 'Linux' in sys_name and (sys_platform.find('arm') > 0 or sys_platform.find('aarch64')):
+ if 'Linux' in sys_name and (sys_platform.find('arm') > 0 or sys_platform.find('aarch64') > 0):
163
sys_name = 'LinuxARM'
164
if 'CYGWIN_NT' in sys_name:
165
sys_name = 'Windows'
0 commit comments