13 lines
363 B
Text
13 lines
363 B
Text
rootProject.name = "CloudstreamExtensionsArabic"
|
|
|
|
val disabled = listOf<String>("EgyBestProvider")
|
|
|
|
File(rootDir, ".").eachDir { dir ->
|
|
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
|
|
include(dir.name)
|
|
}
|
|
}
|
|
|
|
fun File.eachDir(block: (File) -> Unit) {
|
|
listFiles()?.filter { it.isDirectory }?.forEach { block(it) }
|
|
}
|