From a719ac8aeb233c6894ccc9557514f722473b7513 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 12 Jan 2025 15:06:30 +0800 Subject: [PATCH] :bug: Bug fixes in launching --- src/main/library.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/library.ts b/src/main/library.ts index aeac868..0bea9f6 100644 --- a/src/main/library.ts +++ b/src/main/library.ts @@ -103,13 +103,15 @@ export function launchApp(id: string): void { const platform = process.platform const runner = app.release.runners[platform] - const segments = runner.script.split(' ') + const segments = runner.script.split(' ').map(decodeURIComponent) try { - spawn(segments[0], segments.length > 1 ? segments.slice(1) : [], { + const child = spawn(segments[0], segments.length > 1 ? segments.slice(1) : [], { detached: true, cwd: runner.workdir ? join(app.basePath, runner.workdir) : app.basePath, }) + child.stdout.pipe(process.stdout) + child.stderr.pipe(process.stderr) } catch (err: any) { console.error(err) }