diff options
| author | Mike McQuaid | 2012-06-25 19:49:35 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2012-06-25 19:49:44 -0500 |
| commit | bcda0d22aa331e13d80de341d41abc14815a7bdc (patch) | |
| tree | d41a4bc0284835357cb896c6611ce8f2faf9fc03 /Library/Homebrew/exceptions.rb | |
| parent | 4fc305d0086c90d4470ec08310e564c25191d640 (diff) | |
| download | homebrew-bcda0d22aa331e13d80de341d41abc14815a7bdc.tar.bz2 | |
Improve bug report wiki page text.
Fixes #12674.
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 8 |
1 files changed, 5 insertions, 3 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 |
