aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2015-02-26 19:17:12 +0000
committerMike McQuaid2015-02-26 19:17:12 +0000
commitb9790ffe3af2daed9b2d50b253cc348f8cbbe0a7 (patch)
treeccad739bdd7f4f479674e6509f9d9430e0729a7c /Library/Homebrew
parent8ec6245c181803a923a14b4cfae9cc40c6e31343 (diff)
downloadbrew-b9790ffe3af2daed9b2d50b253cc348f8cbbe0a7.tar.bz2
exceptions: instruct not to file boneyard issues.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/exceptions.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index b82bb6111..bd80098ae 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -153,8 +153,14 @@ class BuildError < RuntimeError
puts
puts "#{Tty.red}READ THIS#{Tty.reset}: #{Tty.em}#{OS::ISSUES_URL}#{Tty.reset}"
if formula.tap?
- puts "If reporting this issue please do so at (not Homebrew/homebrew):"
- puts " https://github.com/#{formula.tap}/issues"
+ case formula.tap
+ when "homebrew/homebrew-boneyard"
+ puts "#{formula} was moved to homebrew-boneyard because it has unfixable issues."
+ puts "Please do not file any issues about this. Sorry!"
+ else
+ puts "If reporting this issue please do so at (not Homebrew/homebrew):"
+ puts " https://github.com/#{formula.tap}/issues"
+ end
end
else
require 'cmd/config'