We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b2367 commit fad5b24Copy full SHA for fad5b24
plugins/amazonq/build.gradle.kts
@@ -114,16 +114,15 @@ val prepareBundledFlare by tasks.registering(Copy::class) {
114
inputs.files(downloadFlareArtifacts)
115
116
val dest = layout.buildDirectory.dir("tmp/extractFlare")
117
- outputs.dir(dest)
118
into(dest)
119
120
-
121
from(downloadFlareArtifacts.map { it.outputFiles.filterNot { it.name.endsWith(".zip") } })
122
doLast {
123
copy {
124
125
includeEmptyDirs = false
126
downloadFlareArtifacts.get().outputFiles.filter { it.name.endsWith(".zip") }.forEach {
+ dest.get().file(it.parentFile.name).asFile.createNewFile()
127
from(zipTree(it)) {
128
include("*.js")
129
include("*.txt")
0 commit comments