From 5d7e796617e5b504ab812560752777a52ac6c781 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 21 Jun 2011 19:11:13 +0100 Subject: [PATCH] Only pour bottles when not building from source. --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 6fc6625f4c..05de05c1a2 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -454,7 +454,7 @@ class Formula end def pouring - @bottle or ARGV.build_from_source? + @bottle and not ARGV.build_from_source? end protected