gradle: fix server console run

This commit is contained in:
Sen 2025-05-31 00:47:33 +02:00
parent a6c2695ccb
commit 663ef31db9
Signed by: sen
GPG key ID: 3AC50A6F47D1B722

View file

@ -20,6 +20,7 @@ application {
tasks.run.get().workingDir = rootProject.file("dev/server") tasks.run.get().workingDir = rootProject.file("dev/server")
tasks.run.get().workingDir.mkdirs() tasks.run.get().workingDir.mkdirs()
tasks.run.get().systemProperties.put("crash.nodump", "") tasks.run.get().systemProperties.put("crash.nodump", "")
tasks.run.get().standardInput = System.`in`
} }
tasks.shadowJar { tasks.shadowJar {