From 04f887dc1834d22505c7b4be6637665269b6f90d Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 19 Mar 2014 22:45:56 -0500 Subject: [PATCH] Always build from source when given --interactive Closes Homebrew/homebrew#27716. --- Library/Homebrew/formula_installer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 8bca9d92aa..a61683a5ad 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -49,7 +49,7 @@ class FormulaInstaller def pour_bottle? install_bottle_options={:warn=>false} return false if @pour_failed return true if force_bottle? && f.bottle - return false if build_from_source? || build_bottle? + return false if build_from_source? || build_bottle? || interactive? return false unless options.empty? return true if f.local_bottle_path