aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-05-08 11:43:11 +0100
committerMike McQuaid2014-05-08 11:43:11 +0100
commitf4677e53d13ae57559a61957554b302fe87fcee9 (patch)
treedc57c27b62521dcb01a893e2b1bea1626b1960fd /Library/Homebrew/exceptions.rb
parentd57cea38cfb5fe340a3b4209d95dd7164fb3466f (diff)
downloadhomebrew-f4677e53d13ae57559a61957554b302fe87fcee9.tar.bz2
exceptions: fix tap issue URL.
Closes #29043.
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 7cdd24cb1..7b6268f8c 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -185,7 +185,7 @@ class BuildError < Homebrew::InstallationError
puts "#{Tty.red}READ THIS#{Tty.reset}: #{Tty.em}#{ISSUES_URL}#{Tty.reset}"
if formula.tap?
user, repo = formula.tap.split '/'
- tap_issues_url = "https://github.com/#{user}/homebrew-#{repo}/issues"
+ tap_issues_url = "https://github.com/#{user}/#{repo}/issues"
puts "If reporting this issue please do so at (not Homebrew/homebrew):"
puts " #{tap_issues_url}"
end