Skip to content

Commit f4d0b84

Browse files
ci: made URL check info only
1 parent e702427 commit f4d0b84

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

releng/update-site-tests/detect-latest-eclipse-steams.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ if [[ -n "${ECLIPSE_M_RELEASE:-}" ]]; then
5151
fi
5252

5353
# Verify URLs exist
54-
curl -fsI "$ECLIPSE_R_URL" >/dev/null
54+
if ! curl -fsI "$ECLIPSE_R_URL" >/dev/null; then
55+
echo "⚠️ Could not verify Eclipse archive URL. Continuing anyway."
56+
fi
5557

5658
if [[ -n "${ECLIPSE_M_URL:-}" ]]; then
5759
if ! curl -fsI "$ECLIPSE_M_URL" >/dev/null; then

0 commit comments

Comments
 (0)