We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e702427 commit f4d0b84Copy full SHA for f4d0b84
1 file changed
releng/update-site-tests/detect-latest-eclipse-steams.sh
@@ -51,7 +51,9 @@ if [[ -n "${ECLIPSE_M_RELEASE:-}" ]]; then
51
fi
52
53
# Verify URLs exist
54
-curl -fsI "$ECLIPSE_R_URL" >/dev/null
+if ! curl -fsI "$ECLIPSE_R_URL" >/dev/null; then
55
+ echo "⚠️ Could not verify Eclipse archive URL. Continuing anyway."
56
+fi
57
58
if [[ -n "${ECLIPSE_M_URL:-}" ]]; then
59
if ! curl -fsI "$ECLIPSE_M_URL" >/dev/null; then
0 commit comments