mirror of
https://github.com/Pridecraft-Studios/joy.git
synced 2025-08-03 06:26:00 -04:00
fix: minor packaging errors
This commit is contained in:
parent
fa3bdd93bd
commit
d7bff80e62
@ -112,7 +112,7 @@ allprojects {
|
||||
expand(map)
|
||||
}
|
||||
|
||||
exclude("*/.editorconfig")
|
||||
exclude("*/.editorconfig", ".cache/")
|
||||
}
|
||||
|
||||
withType<JavaCompile> {
|
||||
@ -124,8 +124,11 @@ allprojects {
|
||||
if (project !in excluded) {
|
||||
project(":xplat").afterEvaluate { dependsOn(tasks.named("runDatagen")) }
|
||||
}
|
||||
from("LICENSE*") {
|
||||
rename { "${project.name}-${it}" }
|
||||
|
||||
rootDir.listFiles { _, name -> name.startsWith("LICENSE") }?.let {
|
||||
from(it) {
|
||||
rename { file -> "${rootProject.name}-${file}" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user