Fix Gradle deprecated $buildDir

And some whitespace
This commit is contained in:
Abe Pazos
2023-10-06 18:08:07 +02:00
parent 411b5f5b12
commit fa820c6d3c

View File

@@ -57,7 +57,7 @@ val orxFeatures = setOf<String>(
"orx-shapes",
// "orx-syphon",
// "orx-temporal-blur",
// "orx-tensorflow",
// "orx-tensorflow",
// "orx-time-operators",
// "orx-timer",
// "orx-triangulation",
@@ -189,7 +189,7 @@ tasks {
tasks.register<Zip>("jpackageZip") {
archiveFileName.set("openrndr-application.zip")
from("$buildDir/jpackage") {
from("${layout.buildDirectory.get()}/jpackage") {
include("**/*")
}
}