aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-02-11 17:25:52 -0500
committerJack Nagel2014-02-11 17:27:12 -0500
commit83d317cf7c0feff60fc6e0ef190cf951411efbb1 (patch)
treefca857692b3afecdbe9e063b80799335ffbf7a67
parent0b555a65a164a1c100aa6e68a3d9f5528bc4302a (diff)
downloadhomebrew-83d317cf7c0feff60fc6e0ef190cf951411efbb1.tar.bz2
ls-taps: search names only
-rwxr-xr-xLibrary/Contributions/cmd/brew-ls-taps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-ls-taps.rb b/Library/Contributions/cmd/brew-ls-taps.rb
index cc46cd326..aa6909447 100755
--- a/Library/Contributions/cmd/brew-ls-taps.rb
+++ b/Library/Contributions/cmd/brew-ls-taps.rb
@@ -1,6 +1,6 @@
require "utils/json"
-GitHub.open("https://api.github.com/search/repositories?q=homebrew+sort:stars&per_page=100") do |json|
+GitHub.open("https://api.github.com/search/repositories?q=homebrew+in:name&sort=stars&per_page=100") do |json|
json["items"].each do |repo|
if repo["name"] =~ /^homebrew-(\S+)$/
user = repo["owner"]["login"]