mirror of
https://github.com/PaperMC/Folia.git
synced 2024-11-21 11:55:11 +01:00
Fix building on case sensitive fs
This commit is contained in:
parent
6a5fff3caa
commit
64f7932ed0
@ -1,3 +1,5 @@
|
|||||||
|
import java.util.Locale
|
||||||
|
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
@ -7,4 +9,8 @@ pluginManagement {
|
|||||||
|
|
||||||
rootProject.name = "folia"
|
rootProject.name = "folia"
|
||||||
|
|
||||||
include("folia-api", "folia-server")
|
for (name in listOf("Folia-API", "Folia-Server")) {
|
||||||
|
val projName = name.lowercase(Locale.ENGLISH)
|
||||||
|
include(projName)
|
||||||
|
findProject(":$projName")!!.projectDir = file(name)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user