diff --git a/scripts/pybb.py b/scripts/pybb.py index 915aa5a..fea27ce 100755 --- a/scripts/pybb.py +++ b/scripts/pybb.py @@ -117,9 +117,7 @@ def hostname() -> int: def host_env() -> int: os_name = platform.system().lower() - arch = platform.machine() - if arch == 'amd64': - arch = 'x86_64' + arch = util.get_arch() print(f'{os_name}-{arch}') return 0