mirror of
https://github.com/elastic/logstash.git
synced 2025-04-21 05:08:07 -04:00
10 lines
310 B
Ruby
10 lines
310 B
Ruby
namespace "package" do
|
|
|
|
task "bundle" do
|
|
system("bin/logstash-plugin", "pack")
|
|
raise(RuntimeError, $!.to_s) unless $?.success?
|
|
end
|
|
|
|
desc "Build a package with the default plugins, including dependencies, to be installed offline"
|
|
task "plugins-default" => ["test:install-default", "bundle"]
|
|
end
|