Update settings.gradle.kts

This commit is contained in:
Red 2022-08-15 23:50:45 +01:00 committed by GitHub
parent e330b41661
commit 8264fe5837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ val disabled = listOf(
)
File(rootDir, ".").eachDir { dir ->
if (!disabled.contains(dir.name) && dir.isDirectory && File(dir, "build.gradle.kts").exists()) {
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
include(dir.name)
}
}