Revert "feat(install_server.sh): auto detect amd64-avx"

some vps have avx in their /proc/cpuinfo but actually not support it

This reverts commit f203ab901e.
This commit is contained in:
Haruue Icymoon 2022-12-12 13:26:47 +08:00
parent 042f42b655
commit a5647379b1
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -331,12 +331,6 @@ check_environment_architecture() {
;;
'amd64' | 'x86_64')
ARCHITECTURE='amd64'
# check avx
if [[ -z "$VERSION" ]] || [[ "$(vercmp "$VERSION" 'v1.3.2')" -ge 0 ]]; then
if grep -qs 'flags\s*:.* avx ' /proc/cpuinfo; then
ARCHITECTURE='amd64-avx'
fi
fi
;;
'armv5tel' | 'armv6l' | 'armv7' | 'armv7l')
ARCHITECTURE='arm'