mirror of
https://github.com/Jacekun/cs3xxx-repo.git
synced 2024-08-14 23:57:09 +00:00
fix bug
This commit is contained in:
parent
388d4dfd36
commit
86cfd92785
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ rootProject.name = "CloudstreamPlugins"
|
||||||
|
|
||||||
// This file sets what projects are included. All new projects should get automatically included unless specified in "disabled" variable.
|
// This file sets what projects are included. All new projects should get automatically included unless specified in "disabled" variable.
|
||||||
|
|
||||||
val disabled = listOf()
|
val disabled = listOf<String>()
|
||||||
|
|
||||||
File(rootDir, ".").eachDir { dir ->
|
File(rootDir, ".").eachDir { dir ->
|
||||||
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
|
if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) {
|
||||||
|
|
Loading…
Reference in a new issue