Add bootstrap dependency for deb target

Fixes #1940
This commit is contained in:
Jordan Sissel 2014-10-22 20:00:54 +00:00
parent f35558e395
commit 29f3df0653

View file

@ -74,7 +74,6 @@ namespace "artifact" do
files.each do |path|
next if File.directory?(path)
p path
dir.input("#{path}=/opt/logstash/#{path}")
end
@ -170,7 +169,7 @@ namespace "artifact" do
end
desc "Build an RPM of logstash with all dependencies"
task "deb" do
task "deb" => ["bootstrap"] do
package("ubuntu", "12.04")
end
end