mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
parent
a9def1e108
commit
96dfeb5016
2 changed files with 10 additions and 1 deletions
|
@ -141,6 +141,12 @@ task installTestGems(dependsOn: assemblyDeps) {
|
|||
}
|
||||
}
|
||||
|
||||
task compileGrammar(dependsOn: assemblyDeps) {
|
||||
doLast {
|
||||
rake(projectDir, buildDir, 'compile:grammar')
|
||||
}
|
||||
}
|
||||
|
||||
task assembleTarDistribution(dependsOn: assemblyDeps) {
|
||||
inputs.files fileTree("${projectDir}/rakelib")
|
||||
inputs.files fileTree("${projectDir}/bin")
|
||||
|
|
|
@ -8,7 +8,10 @@ end
|
|||
|
||||
namespace "compile" do
|
||||
desc "Compile the config grammar"
|
||||
task "grammar" => "logstash-core/lib/logstash/config/grammar.rb"
|
||||
task "grammar" => %w(
|
||||
logstash-core/lib/logstash/config/grammar.rb
|
||||
logstash-core/lib/logstash/compiler/lscl/lscl_grammar.rb
|
||||
)
|
||||
|
||||
def safe_system(*args)
|
||||
if !system(*args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue