style: fix biome formatting in docker.ts

This commit is contained in:
ezl-keygraph
2026-03-16 19:10:13 +05:30
parent 117a9d859d
commit f720b7d752
+4 -1
View File
@@ -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' } }),
});
}
/**