diff options
| author | Mike McQuaid | 2012-11-10 06:17:35 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2012-11-10 06:18:34 +0000 |
| commit | e39cfa3e2900a4e6cc2aee2cee20be56a73cc2a8 (patch) | |
| tree | cb19bcb58e7f6bd913b43aef5d3e529d6e5f46bf /Library/Contributions/cmds | |
| parent | 2f5b241e4d64e1927c088c7be6cf29204e78f8c0 (diff) | |
| download | homebrew-e39cfa3e2900a4e6cc2aee2cee20be56a73cc2a8.tar.bz2 | |
brew-test-bot: add skip cleanup, setup options.
Diffstat (limited to 'Library/Contributions/cmds')
| -rwxr-xr-x | Library/Contributions/cmds/brew-test-bot.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/cmds/brew-test-bot.rb b/Library/Contributions/cmds/brew-test-bot.rb index 887ad82c5..047546583 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 |
