diff options
| author | Mike McQuaid | 2012-03-23 05:58:14 +1300 |
|---|---|---|
| committer | Mike McQuaid | 2012-03-23 05:58:14 +1300 |
| commit | f40fc06da11d4acc7df8973e7b266ca987ad4780 (patch) | |
| tree | 52d12796dbbcfee722fc7dabb84f3f32480e9cb1 /Library/Homebrew | |
| parent | dcd642e46095174069ecd240446e25b304f289f4 (diff) | |
| download | homebrew-f40fc06da11d4acc7df8973e7b266ca987ad4780.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 |
