aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2015-10-14 18:52:20 +0100
committerMike McQuaid2015-10-14 18:52:31 +0100
commitaeea95327059efd039cb8387bf0ffe000887206a (patch)
treee98017a48e3b46c8b3d4d2de99bd9690c306770f /Library/Homebrew
parent362da26ff6cc46798a92c7575a50ab63aa44d2a6 (diff)
downloadbrew-aeea95327059efd039cb8387bf0ffe000887206a.tar.bz2
test-bot: readd missing --build-bottle.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 55a3cd149..e228683a6 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -547,11 +547,13 @@ module Homebrew
test "brew", "postinstall", *changed_dependences
end
formula_fetch_options = []
+ formula_fetch_options << "--build-bottle" unless ARGV.include? "--fast"
formula_fetch_options << "--force" if ARGV.include? "--cleanup"
formula_fetch_options << canonical_formula_name
test "brew", "fetch", "--retry", *formula_fetch_options
test "brew", "uninstall", "--force", canonical_formula_name if formula.installed?
install_args = ["--verbose"]
+ install_args << "--build-bottle" unless ARGV.include? "--fast"
install_args << "--HEAD" if ARGV.include? "--HEAD"
# Pass --devel or --HEAD to install in the event formulae lack stable. Supports devel-only/head-only.