diff options
| author | Mike McQuaid | 2014-12-27 16:00:29 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 16:31:44 +0000 | 
| commit | 61b6c7d3d6337d6da34f1048c78da308244a3c46 (patch) | |
| tree | cbdf4f7cc774eaed3db8731dad3a2fd7244dfff9 | |
| parent | 70d5532f40a44efba0087308d5de8e0e576463b8 (diff) | |
| download | homebrew-61b6c7d3d6337d6da34f1048c78da308244a3c46.tar.bz2 | |
elasticsearch: fix strict audit failures.
| -rw-r--r-- | Library/Formula/elasticsearch.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/Library/Formula/elasticsearch.rb b/Library/Formula/elasticsearch.rb index 3855190e0..4441e4d52 100644 --- a/Library/Formula/elasticsearch.rb +++ b/Library/Formula/elasticsearch.rb @@ -1,5 +1,3 @@ -require "formula" -  class Elasticsearch < Formula    homepage "http://www.elasticsearch.org"    url "https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.2.tar.gz" @@ -119,4 +117,8 @@ class Elasticsearch < Formula        </plist>      EOS    end + +  test do +    system "#{bin}/plugin", "--list" +  end  end | 
