From aeea95327059efd039cb8387bf0ffe000887206a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 14 Oct 2015 18:52:20 +0100 Subject: [PATCH] test-bot: readd missing --build-bottle. --- Library/Homebrew/cmd/test-bot.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb index 55a3cd1498..e228683a65 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.