Skip to content
Snippets Groups Projects
Commit 363f2c11 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

formula_installer: check pour from requirements.

parent 767da444
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,14 @@ class FormulaInstaller
return true if f.local_bottle_path
return false unless f.bottle && f.pour_bottle?
f.requirements.each do |req|
next if req.optional? || req.pour_bottle?
if install_bottle_options[:warn]
ohai "Building source; bottle blocked by #{req} requirement"
end
return false
end
unless f.bottle.compatible_cellar?
if install_bottle_options[:warn]
opoo "Building source; cellar of #{f}'s bottle is #{f.bottle.cellar}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment