From 4c4be1cd633094b8c74f638f318f8657479549a9 Mon Sep 17 00:00:00 2001 From: Joshua Batty Date: Thu, 12 Sep 2024 11:21:56 +1000 Subject: [PATCH] add RUST_BACKTRACE=FULLenvvar to get stack traces when crashes occur --- client/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.ts b/client/src/main.ts index b84da2d..79b4180 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -151,7 +151,7 @@ async function getServerOptions(config: Config): Promise { log.info(`Using server executable: ${command}`); const serverExecutable: lc.Executable = { - command, + command: `RUST_BACKTRACE=FULL ${command}`, options: { shell: true, },