From 57769d7448891e2fc1d8e503a10b4c288d404031 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 23 Feb 2014 10:41:22 +0000 Subject: [PATCH] brew-test-bot: don't force-fetch deps. --- Library/Contributions/cmd/brew-test-bot.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index cfb3b233dd..d0d6ac4977 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -275,9 +275,7 @@ class Test test "brew install apple-gcc42" end - deps_fetch_options = " " - deps_fetch_options << " --force" if ARGV.include? '--cleanup' - test "brew fetch#{deps_fetch_options} #{dependencies}" unless dependencies.empty? + test "brew fetch #{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'