We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e55c4 commit a287383Copy full SHA for a287383
src/main/kotlin/atm/bloodworkxgaming/serverstarter/ServerStarter.kt
@@ -198,7 +198,12 @@ class ServerStarter(args: Array<String>) {
198
199
fun main(args: Array<String>) {
200
// System.setProperty("jansi.passthrough", "true")
201
- AnsiConsole.systemInstall()
+ try {
202
+ AnsiConsole.systemInstall()
203
+ } catch (e: Exception) {
204
+ println("jansi couldn't be installed in this terminal (e.g. due to aarch64 not being supported)\n" +
205
+ "Future terminal messages will have no color.")
206
+ }
207
208
try {
209
val starter = ServerStarter(args)
0 commit comments