Don't send, just call the method directly
This commit is contained in:
parent
e29cbc5a48
commit
c95b90a022
@ -204,7 +204,7 @@ module Homebrew extend self
|
||||
f = Formula.factory formula_name
|
||||
formula_relative_path = "Library/Formula/#{f.name}.rb"
|
||||
formula_path = HOMEBREW_REPOSITORY+formula_relative_path
|
||||
has_bottle_block = f.class.send(:bottle).checksums.any?
|
||||
has_bottle_block = f.class.bottle.checksums.any?
|
||||
inreplace formula_path do |s|
|
||||
if has_bottle_block
|
||||
s.sub!(/ bottle do.+?end\n/m, output)
|
||||
|
||||
@ -45,7 +45,7 @@ class Formula
|
||||
map = Hash.new { |h, k| h[k] = [] }
|
||||
rev_list(branch) do |rev|
|
||||
formula_for_sha(rev) do |f|
|
||||
bottle = f.class.send(:bottle)
|
||||
bottle = f.class.bottle
|
||||
unless bottle.checksums.empty?
|
||||
map[bottle.version] << bottle.revision
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user