From 3184befa2e619c07da017546538d6c3f3dfa00b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 11 Feb 2024 08:52:02 +0100 Subject: [PATCH] tools: fix update-icu.sh The name of the sources MD5 file has changed. Refs: https://github.com/unicode-org/icu/releases/tag/release-74-2 PR-URL: https://github.com/nodejs/node/pull/51723 Backport-PR-URL: https://github.com/nodejs/node/pull/51973 Refs: https://github.com/nodejs/node/pull/51721 Reviewed-By: Marco Ippolito Reviewed-By: Luigi Pinca Reviewed-By: Yagiz Nizipli Reviewed-By: LiviaMedeiros Reviewed-By: Steven R Loomis Reviewed-By: Richard Lau Refs: https://github.com/nodejs/node/issues/51933 --- tools/dep_updaters/update-icu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dep_updaters/update-icu.sh b/tools/dep_updaters/update-icu.sh index 3ec891cd936c41..2842f4c9997b69 100755 --- a/tools/dep_updaters/update-icu.sh +++ b/tools/dep_updaters/update-icu.sh @@ -36,7 +36,7 @@ NEW_VERSION_TGZ="icu4c-${LOW_DASHED_NEW_VERSION}-src.tgz" NEW_VERSION_TGZ_URL="https://github.com/unicode-org/icu/releases/download/release-${DASHED_NEW_VERSION}/$NEW_VERSION_TGZ" -NEW_VERSION_MD5="https://github.com/unicode-org/icu/releases/download/release-${DASHED_NEW_VERSION}/icu4c-${LOW_DASHED_NEW_VERSION}-src.md5" +NEW_VERSION_MD5="https://github.com/unicode-org/icu/releases/download/release-${DASHED_NEW_VERSION}/icu4c-${LOW_DASHED_NEW_VERSION}-sources.md5" ./configure --with-intl=full-icu --with-icu-source="$NEW_VERSION_TGZ_URL"