From c8415c665ae74cb20efaee5aaac6a917833e07a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Bu=CC=88nemann?= Date: Sun, 15 Mar 2015 04:34:21 +0100 Subject: [PATCH] download_strategy: allow ssl apache mirror links. Closes Homebrew/homebrew#37732. Signed-off-by: Mike McQuaid --- Library/Homebrew/download_strategy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index a8e4457cfd..72a64bdd28 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -821,7 +821,7 @@ class DownloadStrategyDetector case url when %r[^https?://.+\.git$], %r[^git://] GitDownloadStrategy - when %r[^http://www\.apache\.org/dyn/closer\.cgi] + when %r[^https?://www\.apache\.org/dyn/closer\.cgi] CurlApacheMirrorDownloadStrategy when %r[^https?://(.+?\.)?googlecode\.com/svn], %r[^https?://svn\.], %r[^svn://], %r[^https?://(.+?\.)?sourceforge\.net/svnroot/] SubversionDownloadStrategy