Skip to content

Commit

Permalink
build: add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
silenium-dev committed Jul 24, 2024
1 parent d3d53bf commit 7e5b4e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ val bundleJar by tasks.registering(Jar::class) {
}

val zipBuild by tasks.registering(Zip::class) {
doFirst {
val dir = compileDir.asFile
dir.list()?.forEach(::println)
}
from(compileNative.get().outputs.files) {
include("bin/**")
include("include/**")
Expand Down

0 comments on commit 7e5b4e4

Please sign in to comment.