Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Fix use of ISSUES_URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Oct 2, 2012
1 parent 47cfcad commit 6141d49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Library/Homebrew/exceptions.rb
Expand Up @@ -107,7 +107,7 @@ def dump
puts
onoe "#{formula.name} did not build"
puts "Logs: #{logs}" unless Dir["#{logs}/*"].empty?
puts "Help: #{Tty.em}https://github.com/mxcl/homebrew/wiki/troubleshooting#{Tty.reset}"
puts "Help: #{Tty.em}#{ISSUES_URL}#{Tty.reset}"
issues = GitHub.issues_for_formula(formula.name)
puts *issues.map{ |s| " #{Tty.em}#{s}#{Tty.reset}" } unless issues.empty?
end
Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/global.rb
Expand Up @@ -84,7 +84,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/bug-fixing-checklist"
ISSUES_URL = "https://github.com/mxcl/homebrew/wiki/troubleshooting"

unless ARGV.include? "--no-compat" or ENV['HOMEBREW_NO_COMPAT']
$:.unshift(File.expand_path("#{__FILE__}/../compat"))
Expand Down

0 comments on commit 6141d49

Please sign in to comment.