From a3fee40ce5915a644bf7b4ff0f04c7a018e9a29f Mon Sep 17 00:00:00 2001 From: Kang Date: Fri, 30 Jun 2023 09:03:05 +0800 Subject: [PATCH] [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. --- build-for-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-for-release.sh b/build-for-release.sh index 83b430215c..0d9e6efb4d 100755 --- a/build-for-release.sh +++ b/build-for-release.sh @@ -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