From b782b6cced141ea9f52c9987c6d39232cad621fa Mon Sep 17 00:00:00 2001 From: Jakub Rusz Date: Mon, 4 Apr 2022 09:54:32 +0200 Subject: [PATCH] tools/define-compose-url: change url back to nightly The latest nightly link for 8.6 was missing only by accident, changing back as it's fixed already. --- tools/define-compose-url.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/define-compose-url.sh b/tools/define-compose-url.sh index c5361c756..620bb8f44 100755 --- a/tools/define-compose-url.sh +++ b/tools/define-compose-url.sh @@ -8,10 +8,10 @@ if [[ $ID != rhel ]]; then fi if [[ $ID == rhel && ${VERSION_ID%.*} == 8 ]]; then - COMPOSE_ID=$(curl -L http://download.eng.bos.redhat.com/rhel-8/development/RHEL-8/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) + COMPOSE_ID=$(curl -L http://download.eng.bos.redhat.com/rhel-8/nightly/RHEL-8/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) # default to a nightly tree but respect values passed from ENV so we can test rel-eng composes as well - COMPOSE_URL="${COMPOSE_URL:-http://download.eng.bos.redhat.com/rhel-8/development/RHEL-8/$COMPOSE_ID}" + COMPOSE_URL="${COMPOSE_URL:-http://download.eng.bos.redhat.com/rhel-8/nightly/RHEL-8/$COMPOSE_ID}" elif [[ $ID == rhel && ${VERSION_ID%.*} == 9 ]]; then COMPOSE_ID=$(curl -L http://download.eng.bos.redhat.com/rhel-9/nightly/RHEL-9/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID)