aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2011-06-21 19:11:13 +0100
committerMike McQuaid2011-06-21 19:25:39 +0100
commitb2e41ed95d4b0a428a4f5d57d7b260bf0d854e81 (patch)
tree85abee8dcf34b89493fade6e4a3d1583c48d7456 /Library
parent6c053e320f0557adefc6dbc13a60d4d357a6878c (diff)
downloadhomebrew-b2e41ed95d4b0a428a4f5d57d7b260bf0d854e81.tar.bz2
Only pour bottles when not building from source.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 6fc6625f4..05de05c1a 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