aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-08-17 11:07:17 +0100
committerGitHub2016-08-17 11:07:17 +0100
commitcf71e30180d44219836ef129d5e5f00325210dfb (patch)
tree220d3832242f35bb9944562b020261d2f4314695 /Library/Homebrew/exceptions.rb
parent5bbc3c21f2235c37be2c01b6d133abcbe2070fb3 (diff)
parented5e2ea3003acc858e0886cb1c4a944f44ba598e (diff)
downloadbrew-cf71e30180d44219836ef129d5e5f00325210dfb.tar.bz2
Merge pull request #724 from MikeMcQuaid/assume-ruby-two
Assume Ruby 2
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 ba04a1d5a..4d1559c28 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -350,7 +350,7 @@ class BuildError < RuntimeError
end
end
puts
- if RUBY_VERSION >= "1.8.7" && issues && !issues.empty?
+ if issues && !issues.empty?
puts "These open issues may also help:"
puts issues.map { |i| "#{i["title"]} #{i["html_url"]}" }.join("\n")
end