Merge pull request #114 from Cherrling/main

change `arch` to `uname -m` for better use
This commit is contained in:
233boy
2026-03-11 12:17:26 +08:00
committed by GitHub

View File

@@ -62,7 +62,7 @@ _wget() {
cmd=$(type -P apt-get || type -P yum || type -P zypper) cmd=$(type -P apt-get || type -P yum || type -P zypper)
# x64 # x64
case $(arch) in case $(uname -m) in
amd64 | x86_64) amd64 | x86_64)
is_arch="amd64" is_arch="amd64"
;; ;;