aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2009-12-12 17:56:00 -0800
committerMax Howell2009-12-17 19:19:33 +0000
commit1a52c7f8644f0d6871c3c5fabd4bd7c124b3c9d3 (patch)
tree01eb4ac6e461d322a383f34243d0ec9fc5451a69 /Library/Homebrew
parenta3f448a3e212eff4622245e98be8f523eb837c58 (diff)
downloadbrew-1a52c7f8644f0d6871c3c5fabd4bd7c124b3c9d3.tar.bz2
Allow https on more download strategies.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index ad7dbaec4..dc23e733d 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -163,8 +163,8 @@ class Formula
when %r[^svn+http://] then SubversionDownloadStrategy
when %r[^git://] then GitDownloadStrategy
when %r[^https?://(.+?\.)?googlecode\.com/hg] then MercurialDownloadStrategy
- when %r[^http://(.+?\.)?googlecode\.com/svn] then SubversionDownloadStrategy
- when %r[^http://(.+?\.)?sourceforge\.net/svnroot/] then SubversionDownloadStrategy
+ when %r[^https?://(.+?\.)?googlecode\.com/svn] then SubversionDownloadStrategy
+ when %r[^https?://(.+?\.)?sourceforge\.net/svnroot/] then SubversionDownloadStrategy
when %r[^http://svn.apache.org/repos/] then SubversionDownloadStrategy
else CurlDownloadStrategy
end