diff options
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 8 | ||||
| -rw-r--r-- | Library/Homebrew/global.rb | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index de139fcbb..d3e2e8936 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -125,16 +125,18 @@ class BuildError < Homebrew::InstallationError onoe "#{e.to_s.strip} (#{formula_name}.rb:#{error_line})" issues = GitHub.issues_for_formula formula_name if issues.empty? - puts "If `brew doctor' does not help diagnose the issue, please report the bug:" + puts "If `brew doctor` does not, this may help you fix or report the issue:" puts " #{Tty.em}#{issues_url}#{Tty.reset}" else puts "These existing issues may help you:", *issues.map{ |s| " #{Tty.em}#{s}#{Tty.reset}" } - puts "Otherwise, please report the bug:" + puts "Otherwise, this may help you fix or report the issue:" puts " #{Tty.em}#{issues_url}#{Tty.reset}" end if e.was_running_configure? - puts "We saved the configure log, please gist it if you report the issue:" + puts "We saved the configure log:" puts " ~/Library/Logs/Homebrew/config.log" + puts "If you report the issue please paste the config.log here:" + puts " #{Tty.em}http://gist.github.com/#{Tty.reset}" end end end diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb index 34ff785eb..3c61f232e 100644 --- a/Library/Homebrew/global.rb +++ b/Library/Homebrew/global.rb @@ -85,7 +85,7 @@ module Homebrew extend self end FORMULA_META_FILES = %w[README README.md ChangeLog CHANGES COPYING LICENSE LICENCE COPYRIGHT AUTHORS] -ISSUES_URL = "https://github.com/mxcl/homebrew/wiki/reporting-bugs" +ISSUES_URL = "https://github.com/mxcl/homebrew/wiki/bug-fixing-checklist" unless ARGV.include? "--no-compat" or ENV['HOMEBREW_NO_COMPAT'] $:.unshift(File.expand_path("#{__FILE__}/../compat")) |
