diff options
| author | Jack Nagel | 2013-06-12 14:48:17 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-12 14:48:17 -0500 |
| commit | d6d112f227ba22101bded3bd1f7260a1de42590f (patch) | |
| tree | 8522f7ae80b7a4d1bf1dbee82ac737b2fab3afd6 /Library | |
| parent | cf37904f84ab2971c3b6449ed0bcaddbe04c7418 (diff) | |
| download | homebrew-d6d112f227ba22101bded3bd1f7260a1de42590f.tar.bz2 | |
Remove use of global variable
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/search.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb index b5942298e..5559835dd 100644 --- a/Library/Homebrew/cmd/search.rb +++ b/Library/Homebrew/cmd/search.rb @@ -27,7 +27,7 @@ module Homebrew extend self end if query - $found = search_results.length + found = search_results.length threads = [] results = [] @@ -42,12 +42,13 @@ module Homebrew extend self threads << Thread.new { search_tap "Homebrew", "x11", rx } threads.each do |t| - results << t.value + results.concat(t.value) end - results.each { |r| puts_columns r } + puts_columns(results) + found += results.length - if $found == 0 and not blacklisted? query + if found == 0 and not blacklisted? query puts "No formula found for #{query.inspect}. Searching open pull requests..." GitHub.find_pull_requests(rx) { |pull| puts pull } end @@ -73,7 +74,6 @@ module Homebrew extend self name = File.basename(file, '.rb') if file =~ /\.rb$/ and name =~ rx results << "#{user}/#{repo}/#{name}" - $found += 1 end end end |
