aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/pull.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index 63f5551b8..53894983a 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -131,7 +131,7 @@ module Homebrew
fetch_bottles = false
changed_formulae.each do |f|
if ARGV.include? "--bottle"
- if f.bottle
+ if f.bottle_defined?
fetch_bottles = true
elsif f.bottle_unneeded?
ohai "#{f}: skipping unneeded bottle."
@@ -139,7 +139,7 @@ module Homebrew
ohai "#{f}: skipping disabled bottle: #{f.bottle_disable_reason}"
end
else
- next unless f.bottle
+ next unless f.bottle_defined?
opoo "#{f.full_name} has a bottle: do you need to update it with --bottle?"
end
end