From 2fc6bfd88ee1201b0aa7e0b4ea50be66956ad795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Galv=C3=A3o?= Date: Sun, 22 Mar 2020 01:47:05 +0000 Subject: [PATCH] find-appcast: also bail on SSL error --- developer/bin/find-appcast | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/developer/bin/find-appcast b/developer/bin/find-appcast index b42c99774f..0cc5a106c1 100755 --- a/developer/bin/find-appcast +++ b/developer/bin/find-appcast @@ -26,7 +26,10 @@ def url_exist?(url) uri = URI.parse(url) response = Net::HTTP.get_response(uri) response.is_a? Net::HTTPSuccess -rescue URI::InvalidURIError, Errno::ECONNREFUSED, SocketError +rescue URI::InvalidURIError, + Errno::ECONNREFUSED, + SocketError, + OpenSSL::SSL::SSLError false end