diff --git a/settings.gradle.kts b/settings.gradle.kts index 16b5679..72ef97b 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -4,7 +4,9 @@ rootProject.name = "CloudstreamPlugins" // to the includes below. // Plugins are included like this -val disabled = listOf("EgyBestProvider") +val disabled = listOf( + "EgyBestProvider", "FaselHDProvider", "AkwamProvider", "MyCimaProvider" +) File(rootDir, ".").eachDir { dir -> if (!disabled.contains(dir.name) && File(dir, "build.gradle.kts").exists()) { @@ -18,4 +20,4 @@ fun File.eachDir(block: (File) -> Unit) { // To only include a single project, comment out the previous lines (except the first one), and include your plugin like so: -// include("PluginName") \ No newline at end of file +// include("PluginName")