From ef1b9898d2d2511e587a0a0256212ffe118caffb Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Fri, 20 Dec 2024 10:55:49 +0000 Subject: [PATCH] Update reproducible tooling to select updated CDX 1.0.6 tools Signed-off-by: Andrew Leonard --- tooling/release_download_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/release_download_test.sh b/tooling/release_download_test.sh index 9bb5b7ebc..f7b53fb5f 100755 --- a/tooling/release_download_test.sh +++ b/tooling/release_download_test.sh @@ -160,8 +160,8 @@ download_release_files() { cd "${WORKSPACE}/staging/${TAG}" || exit 1 - # Early access versions are currently in a different format - if echo "${TAG}" | grep ea-beta; then + # Check for old format ea-beta whose browser_download_url was a different format + if echo "${TAG}" | grep "^jdk${MAJOR_VERSION}u-.*-beta" > /dev/null; then filter="ea_${MAJOR_VERSION}" else # shellcheck disable=SC2001