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

This commit is contained in:
2023-11-12 09:26:09 -06:00
parent c74dd4a5f3
commit 794a15cda1
+1 -1
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'