Awoocord/settings.gradle.kts

17 lines
372 B
Text
Raw Normal View History

2025-05-29 03:12:05 +10:00
rootProject.name = "Awoocord"
val canaryPlugins = arrayOf("ComponentsV2", "SlashCommandsFix")
2025-05-29 03:12:05 +10:00
include(
"Scout",
*canaryPlugins,
2025-05-29 03:12:05 +10:00
)
rootProject.children.forEach {
val isCanary = it.name in canaryPlugins
val dir = if (isCanary) "canary" else "plugins"
val name = it.name
if (isCanary) it.name += "Beta"
it.projectDir = file("${dir}/${name}")
2025-05-29 03:12:05 +10:00
}