Skip to content

Commit

Permalink
Fix bash syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandruss committed Oct 25, 2024
1 parent 96ecf97 commit 8983713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ fi
if [[ ! -z "${TBB_INSTALL_DIR}" ]] ; then
export TBBROOT="${TBB_INSTALL_DIR}"
export LD_LIBRARY_PATH="${TBBROOT}/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
elif [[ "${ARCH}" == "32e" ] && [ "${backend_config}" == "ref" ]]; then
elif [ "${ARCH}" == "32e" ] && [ "${backend_config}" == "ref" ]; then
"${ONEDAL_DIR}"/dev/download_tbb.sh
elif [[ "${ARCH}" == "arm" || ("${ARCH}" == "riscv64") ]]; then
if [[ "${ARCH}" == "arm" ]] ; then
Expand Down

0 comments on commit 8983713

Please sign in to comment.