aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index b633a4cb7..740a112ff 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -598,7 +598,8 @@ module Homebrew
else
ARGV.named.each do |argument|
test = Test.new(argument, tap)
- any_errors ||= !test.run
+ test_error = !test.run
+ any_errors ||= test_error
tests << test
end
end