From 925a9572c927ee6288dd96317054874a880c1be8 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 10 Nov 2012 06:17:35 +0000 Subject: [PATCH] brew-test-bot: add skip cleanup, setup options. --- Library/Contributions/cmds/brew-test-bot.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Contributions/cmds/brew-test-bot.rb b/Library/Contributions/cmds/brew-test-bot.rb index 887ad82c53..047546583b 100755 --- a/Library/Contributions/cmds/brew-test-bot.rb +++ b/Library/Contributions/cmds/brew-test-bot.rb @@ -254,14 +254,14 @@ class Test def self.run url test = new url - test.cleanup + test.cleanup unless ARGV.include? "--skip-cleanup" test.download - test.setup + test.setup unless ARGV.include? "--skip-setup" test.formulae.each do |f| test.formula f end test.homebrew if test.core_changed - test.cleanup + test.cleanup unless ARGV.include? "--skip-cleanup" test.check_results end