This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new 5bc9e6f472a branch-4.0: [fix](mac) download one package on Mac failed
#59909 (#59941)
5bc9e6f472a is described below
commit 5bc9e6f472ac8f2090aa30a4910a55636a006ba6
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 16 10:52:55 2026 +0800
branch-4.0: [fix](mac) download one package on Mac failed #59909 (#59941)
Cherry-picked from #59909
Co-authored-by: camby <[email protected]>
---
thirdparty/download-thirdparty.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/thirdparty/download-thirdparty.sh
b/thirdparty/download-thirdparty.sh
index 4ce27e02349..75e5d38d814 100755
--- a/thirdparty/download-thirdparty.sh
+++ b/thirdparty/download-thirdparty.sh
@@ -55,8 +55,10 @@ SPEC_ARCHIVES=(
while [[ $# -gt 0 ]]; do
GIVEN_LIB=$1
SPEC_LIB=
+ lc_given_lib=$(echo "${GIVEN_LIB}" | tr '[:upper:]' '[:lower:]')
for TP_ARCH in "${TP_ARCHIVES[@]}"; do
- if [[ "${GIVEN_LIB,,}" = "${TP_ARCH,,}" ]]; then
+ lc_tp_arch=$(echo "${TP_ARCH}" | tr '[:upper:]' '[:lower:]')
+ if [[ "${lc_given_lib}" = "${lc_tp_arch}" ]]; then
SPEC_LIB=${TP_ARCH}
break
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]