mirror of
https://github.com/Pridecraft-Studios/joy.git
synced 2025-09-09 20:17:46 -04:00
fix: Not all sourceSets being considered for cleanupSource
This commit is contained in:
parent
e9c881bff3
commit
58e6ba1b82
@ -225,11 +225,15 @@ tasks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (file in project.fileTree(cleanupSource)) {
|
for (file in project.fileTree(cleanupSource)) {
|
||||||
|
logger.debug("Src {}", file)
|
||||||
doWork(file)
|
doWork(file)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (file in sourceSets.main.get().resources) {
|
allprojects {
|
||||||
doWork(file)
|
for (file in sourceSets.main.get().resources) {
|
||||||
|
logger.debug("Res {}", file)
|
||||||
|
doWork(file)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for ((k, v) in map) {
|
for ((k, v) in map) {
|
||||||
@ -252,6 +256,7 @@ tasks {
|
|||||||
|
|
||||||
map.values.asSequence()
|
map.values.asSequence()
|
||||||
.filter { it.isMissed() }
|
.filter { it.isMissed() }
|
||||||
|
.sortedBy { it.file.absolutePath }
|
||||||
.forEach { logger.warn("Missed entry: {}", it.file) }
|
.forEach { logger.warn("Missed entry: {}", it.file) }
|
||||||
|
|
||||||
map.values.asSequence()
|
map.values.asSequence()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user