diff options
| author | Jack Nagel | 2013-06-24 12:48:01 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-24 12:50:57 -0500 |
| commit | f4163e90688efe15727ffffaeb734ae475d2bd93 (patch) | |
| tree | c0d3c48411ffce4094436e6d88fb0585134cb214 | |
| parent | 3e67d2b31fd2ddbeb16960f1211bcb2ddc8142f7 (diff) | |
| download | homebrew-f4163e90688efe15727ffffaeb734ae475d2bd93.tar.bz2 | |
brew-server: fix reference to removed method
Fixes #20744.
| -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 |
