[bugfix](build script) fix noavx2 package name branch condition #21356

ARCH changed from x86_64 to x64, but the check condition for noavx2 remains x86_64. Just remove check for ARCH.
This commit is contained in:
Kang
2023-06-30 09:03:05 +08:00
committed by GitHub
parent 3fb75c1844
commit a3fee40ce5

View File

@ -128,7 +128,7 @@ BE="be"
EXT="extensions"
PACKAGE="apache-doris-${VERSION}-bin-${ARCH}"
if [[ "${_USE_AVX2}" == "0" && "${ARCH}" == "x86_64" ]]; then
if [[ "${_USE_AVX2}" == "0" ]]; then
PACKAGE="${PACKAGE}-noavx2"
fi