From eaea27c960de3bf76fc9976bfad037c0a559018d Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 5 Aug 2017 17:51:26 +0100 Subject: [PATCH] formula_installer: restore build_bottle defaults. --- Library/Homebrew/formula_installer.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 4e4a599725..b2a5283818 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -46,7 +46,7 @@ class FormulaInstaller @ignore_deps = false @only_deps = false @build_from_source = ARGV.build_from_source? || ARGV.build_all_from_source? - @build_bottle = ARGV.build_bottle? + @build_bottle = false @force_bottle = ARGV.force_bottle? @interactive = false @git = false @@ -543,7 +543,6 @@ class FormulaInstaller fi.options |= inherited_options fi.options &= df.options fi.build_from_source = ARGV.build_formula_from_source?(df) - fi.build_bottle = false fi.force_bottle = false fi.verbose = verbose? fi.quieter = quieter?