aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorMisty De Meo2014-03-17 11:52:11 -0700
committerMisty De Meo2014-03-17 11:52:11 -0700
commit8b3d336ce4a3373fc67fde9ee9daf96cdb80928d (patch)
treeb5bcbaeaa156433354254752910f0693d4f8b0df /Library/Homebrew/exceptions.rb
parent405c23fc4577784b97c96da2b6ad921868639a21 (diff)
downloadhomebrew-8b3d336ce4a3373fc67fde9ee9daf96cdb80928d.tar.bz2
Don't check issues on Ruby 1.8.6
The system certs are too old to be able to read from Github, so don't try to use the Github API on 1.8.6 either.
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 73812b355..fbdb261ba 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -219,7 +219,7 @@ class BuildError < Homebrew::InstallationError
end
end
puts
- unless RUBY_VERSION < "1.8.6" || issues.empty?
+ unless RUBY_VERSION < "1.8.7" || issues.empty?
puts "These open issues may also help:"
puts issues.map{ |i| "#{i['title']} (#{i['html_url']})" }.join("\n")
end