From 6081776d5afa38aa50badf497386931737aaf4fa Mon Sep 17 00:00:00 2001 From: Stewart X Addison <6487691+sxa@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:37:57 +0000 Subject: [PATCH] releaseCheck: Don't pick up beta builds when checking GA (#154) Signed-off-by: Stewart X Addison --- sbin/releaseCheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/releaseCheck.sh b/sbin/releaseCheck.sh index 8e37335..6cfb6c4 100755 --- a/sbin/releaseCheck.sh +++ b/sbin/releaseCheck.sh @@ -15,7 +15,7 @@ echo Grabbing information from https://github.com/adoptium/temurin${TEMURIN_VERS FILTER=$(echo $TEMURIN_TAG | sed 's/+/%2B/g') echo FILTER IS: $FILTER curl -q https://api.github.com/repos/adoptium/temurin${TEMURIN_VERSION}-binaries/releases | - grep "$FILTER" | + grep "/$FILTER/" | awk -F'"' '/browser_download_url/{print$4}' > releaseCheck.$$.tmp || exit 1 #### LINUX (ALL)