aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/readall.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-03-20 16:59:21 +0000
committerMike McQuaid2015-03-20 16:59:21 +0000
commit2d1c8b4de4aabd638fb78456044be602adfaddea (patch)
tree08418a7b23fcb6ccef1d1cd1edd99b11075b1079 /Library/Homebrew/cmd/readall.rb
parentdcf6be10f8bc33048a7e0ae37f2f63b4124701bd (diff)
downloadbrew-2d1c8b4de4aabd638fb78456044be602adfaddea.tar.bz2
test-bot: don't run readall on <=10.8.
The Ruby 1.8 implementation seems to be really flaky, unfortunately.
Diffstat (limited to 'Library/Homebrew/cmd/readall.rb')
-rw-r--r--Library/Homebrew/cmd/readall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/readall.rb b/Library/Homebrew/cmd/readall.rb
index 7bb921b88..440709ec2 100644
--- a/Library/Homebrew/cmd/readall.rb
+++ b/Library/Homebrew/cmd/readall.rb
@@ -22,7 +22,7 @@ module Homebrew
while rb = ruby_files.pop(true)
nostdout { failed = true unless system "ruby", "-c", "-w", rb }
end
- rescue ThreadError, IOError # ignore empty queue error
+ rescue ThreadError # ignore empty queue error
end
end
end