[buildcore] Fix hostevn cmd to return OS instead of hostname

This commit is contained in:
Gary Talent 2023-11-12 09:26:09 -06:00
parent d7a6bc4ae4
commit 8ddc8f40e5

View File

@ -116,7 +116,7 @@ def hostname() -> int:
def host_env() -> int:
os_name = socket.gethostname().lower()
os_name = platform.system().lower()
arch = platform.machine()
if arch == 'amd64':
arch = 'x86_64'