Changed run dir to the root of the project

This commit is contained in:
coolGi
2024-02-20 00:51:41 +10:30
parent 4d038fc5e6
commit 4290cdf8c6
+10
View File
@@ -114,6 +114,16 @@ subprojects { p ->
parchment(parchmentVersionParts[0], parchmentVersionParts[1])
devNamespace "mojmap"
}
runs {
config("client") {
workingDir = rootProject.file("run")
}
config("server") {
workingDir = rootProject.file("run") // TODO: When running the server, would it be a better idea to change this to a different dir?
disabled = true // TODO: Once server-side support is added, remove this
}
}
}
if (p != project(":common")) {