diff options
| author | Mike McQuaid | 2012-03-23 05:58:14 +1300 |
|---|---|---|
| committer | Mike McQuaid | 2012-03-23 05:58:14 +1300 |
| commit | 49b16f3462980bd626a59a85768fb6c7b6228e2b (patch) | |
| tree | aa595387c7712066d5d9cb4c18c7379ad867faf1 /Library/Homebrew | |
| parent | abfce0f6b2fdb5b710c7fb2783f18135ac548c7b (diff) | |
| download | brew-49b16f3462980bd626a59a85768fb6c7b6228e2b.tar.bz2 | |
Fix broken default bottle URL.
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 909bbd0f9..c8ef58e50 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -631,7 +631,7 @@ private bottle_block.instance_eval &block @bottle_url, @bottle_sha1 = bottle_block.url_sha1 - @bottle_url ||= "#{bottle_base_url}/#{name.downcase}-#{@version||@standard.detect_version}#{bottle_native_suffix}" if @bottle_sha1 + @bottle_url ||= "#{bottle_base_url}#{name.downcase}-#{@version||@standard.detect_version}#{bottle_native_suffix}" if @bottle_sha1 end def mirror val, specs=nil |
