diff options
| author | Charlie Sharpsteen | 2011-09-11 15:23:41 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-19 09:24:43 -0700 |
| commit | 9d19506ee9d79d35eec5063ee1e971583fe79460 (patch) | |
| tree | 98697bafeb019c818348d59233ca734f5966b9ad /Library/Homebrew/cmd | |
| parent | ff7c88655698b8211c3cc45c16ef05ce924dea91 (diff) | |
| download | brew-9d19506ee9d79d35eec5063ee1e971583fe79460.tar.bz2 | |
mirror support: Add mirror method to Formula.rb
Mirrors can now be declared using the `mirror` method which works similar to
`depends_on` and takes the same arguments as `url`.
The formula class now has a public `fetch` method that cycles through the
mirror list if the downloader for the primary URL throws a `DownloadError`.
Other brew commands, like brew-fetch, also benefit from mirror support by using
this method.
Closes Homebrew/homebrew#7574.
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/fetch.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/fetch.rb b/Library/Homebrew/cmd/fetch.rb index de3efe124..19060bc01 100644 --- a/Library/Homebrew/cmd/fetch.rb +++ b/Library/Homebrew/cmd/fetch.rb @@ -10,7 +10,7 @@ module Homebrew extend self bucket << f bucket << f.recursive_deps end - + bucket = bucket.flatten.uniq else bucket = ARGV.formulae @@ -24,7 +24,7 @@ module Homebrew extend self FileUtils.rm_rf where_to if File.exist? where_to end - the_tarball = f.downloader.fetch + the_tarball, _ = f.fetch next unless the_tarball.kind_of? Pathname previous_md5 = f.instance_variable_get(:@md5) |
