aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2013-12-13 18:31:11 -0800
committerAdam Vandenberg2013-12-13 18:31:11 -0800
commit856266432daf7bb69d573b5efde533b301061730 (patch)
tree3525633a936326a8353b0f6288e33b2553f50584
parentea646cd428e891c45419e448c3cf0003864c27f9 (diff)
downloadbrew-856266432daf7bb69d573b5efde533b301061730.tar.bz2
fix repo URL for brew search
Closes Homebrew/homebrew#25192.
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index 7327c41df..87b91d6b9 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -249,7 +249,7 @@ def paths
end
module GitHub extend self
- ISSUES_URI = URI.parse("https://api.github.com/legacy/issues/search/mxcl/homebrew/open/")
+ ISSUES_URI = URI.parse("https://api.github.com/legacy/issues/search/Homebrew/homebrew/open/")
Error = Class.new(StandardError)