From f720b7d752c90124236fbb6d92e7e36284a01710 Mon Sep 17 00:00:00 2001 From: ezl-keygraph Date: Mon, 16 Mar 2026 19:10:13 +0530 Subject: [PATCH] style: fix biome formatting in docker.ts --- apps/cli/src/docker.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/cli/src/docker.ts b/apps/cli/src/docker.ts index 1afc168..972b8b3 100644 --- a/apps/cli/src/docker.ts +++ b/apps/cli/src/docker.ts @@ -263,7 +263,10 @@ export function spawnWorker(opts: WorkerOptions): ChildProcess { } // Prevent MSYS/Git Bash from converting Unix paths (e.g. /repos/my-repo) to Windows paths - return spawn('docker', args, { stdio: 'pipe', ...(os.platform() === 'win32' && { env: { ...process.env, MSYS_NO_PATHCONV: '1' } }) }); + return spawn('docker', args, { + stdio: 'pipe', + ...(os.platform() === 'win32' && { env: { ...process.env, MSYS_NO_PATHCONV: '1' } }), + }); } /**