Skip to content

Commit

Permalink
[bugfix](build script) fix noavx2 package name branch condition #21356
Browse files Browse the repository at this point in the history
ARCH changed from x86_64 to x64, but the check condition for noavx2 remains x86_64. Just remove check for ARCH.
  • Loading branch information
xiaokang authored Jun 30, 2023
1 parent 3fb75c1 commit a3fee40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-for-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a3fee40

Please sign in to comment.