Fix check arm system

This commit is contained in:
Oleg Korshul
2025-11-28 13:54:34 +03:00
parent d3a2f05945
commit 71d9e34164

View File

@@ -37,7 +37,7 @@ def is_os_64bit():
return platform.machine().endswith('64')
def is_os_arm():
if -1 == platform.machine().find('arm'):
if -1 == platform.machine().lower().find('arm'):
return False
return True