Create out dir in gradle task
Some checks failed
andreas-personal/AndysAdguardHomeBlocklist/pipeline/head There was a failure building this commit

This commit is contained in:
Andreas Fahrecker 2024-08-07 15:40:42 +02:00
parent 6fb435a914
commit a1b54eeeed

View File

@ -39,4 +39,7 @@ task createOutDir {
task compileAdblockList(type: NpmTask) { task compileAdblockList(type: NpmTask) {
dependsOn npmInstall, createOutDir dependsOn npmInstall, createOutDir
args = ['run', 'compile'] args = ['run', 'compile']
doFirst {
file("out").mkdirs()
}
} }