Skip to content
Snippets Groups Projects
Commit ab4f9e57 authored by Misty De Meo's avatar Misty De Meo
Browse files

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.
parent d3c8e2f9
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment