From f6b8f87551c4309b3354466456f469778fcd8d2a Mon Sep 17 00:00:00 2001 From: Brian Allred Date: Sun, 21 Jun 2026 13:02:49 -0500 Subject: [PATCH] Fix paths with spaces on linux/mac --- src/main/request_handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/request_handler.ts b/src/main/request_handler.ts index f1ade98..52f00d3 100644 --- a/src/main/request_handler.ts +++ b/src/main/request_handler.ts @@ -815,7 +815,7 @@ async function handleInner( case 'exit_session': // play the game // resolve(new Responses.OkOrError(true, "starting the game...", request.id)); - let command = path.normalize(`${Config.getRyuPath()}`); + let command = `"${path.normalize(Config.getRyuPath())}"`; if (process.platform == 'win32') { command = `cmd /C ""${Config.getRyuPath()}""`; }