From a35fb6a19221cd5a130ab72601fef107997305b8 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 22 Feb 2014 17:01:38 +0000 Subject: [PATCH] brew-test-bot: force dep fetches on cleanup. --- Library/Contributions/cmd/brew-test-bot.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index 11887cf7a4..906ad72d03 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -274,7 +274,9 @@ class Test test "brew install apple-gcc42" end - test "brew fetch #{dependencies}" unless dependencies.empty? + deps_fetch_options = " " + deps_fetch_options << " --force" if ARGV.include? '--cleanup' + test "brew fetch#{deps_fetch_options} #{dependencies}" unless dependencies.empty? formula_fetch_options = " " formula_fetch_options << " --build-bottle" unless ARGV.include? '--no-bottle' formula_fetch_options << " --force" if ARGV.include? '--cleanup'