diff options
| author | Jack Nagel | 2013-06-24 12:48:01 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-24 12:50:57 -0500 |
| commit | a4988411ad49fa0c1935bcb2c725775f0742cd0b (patch) | |
| tree | bd14eabdecdf0dbf7b3bc2167b8d682e6828d4b6 /Library/Contributions | |
| parent | 553b1a0dbba3b80c9dc33348186abb8c85e222a5 (diff) | |
| download | brew-a4988411ad49fa0c1935bcb2c725775f0742cd0b.tar.bz2 | |
brew-server: fix reference to removed method
Fixes Homebrew/homebrew#20744.
Diffstat (limited to 'Library/Contributions')
| -rwxr-xr-x | Library/Contributions/cmd/brew-server | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-server b/Library/Contributions/cmd/brew-server index 399fe6839..e51817b6a 100755 --- a/Library/Contributions/cmd/brew-server +++ b/Library/Contributions/cmd/brew-server @@ -8,6 +8,7 @@ $:.unshift(ENV['HOMEBREW_LIBRARY_PATH']) require 'global' require 'formula' +require 'cmd/search' require 'rubygems' @@ -109,7 +110,7 @@ end get '/search' do q = params['q'] - results = search_brews(q) + results = Homebrew.search_formulae(q) html_page("Results") do |s| s << <<-HTML |
