aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXu Cheng2015-10-19 18:04:31 +0800
committerXu Cheng2015-10-19 21:41:36 +0800
commitc4067cf8bb8f9e3fe77d327d749d69e411fefebe (patch)
treec07230c8908ba270a526a6f4e1e3dd1f1336ebb0
parentd20d08b5fe5eda386981e2da07c1000d6fb4431d (diff)
downloadbrew-c4067cf8bb8f9e3fe77d327d749d69e411fefebe.tar.bz2
test-bot: skip bottling if it's unneeded
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index ac0c0aa14..38e267f9d 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -582,7 +582,7 @@ module Homebrew
audit_args << "--strict" << "--online" if @added_formulae.include? formula_name
test "brew", "audit", *audit_args
if install_passed
- if formula.stable? && !ARGV.include?("--fast")
+ if formula.stable? && !ARGV.include?("--fast") && !formula.bottle_disabled?
bottle_args = ["--verbose", "--rb", canonical_formula_name]
bottle_args << "--keep-old" if ARGV.include? "--keep-old"
test "brew", "bottle", *bottle_args