[buildcore] Windows fixes

This commit is contained in:
2024-06-22 15:18:25 -05:00
parent 3b874c6e6a
commit f1ee645a0a
3 changed files with 13 additions and 12 deletions

View File

@ -32,7 +32,7 @@ def get_os() -> str:
def get_arch() -> str:
arch = platform.machine()
if arch.lower() == 'amd64':
arch = platform.machine().lower()
if arch == 'amd64':
arch = 'x86_64'
return arch