From 85d4527701b7be0606888a383923eb92bda7a110 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Mon, 30 Mar 2026 20:31:39 -0500 Subject: [PATCH] =?UTF-8?q?fix(macp):=20use=20sh=20instead=20of=20bash=20i?= =?UTF-8?q?n=20gate-runner=20=E2=80=94=20Alpine=20Linux=20compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/macp/src/gate-runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/macp/src/gate-runner.ts b/packages/macp/src/gate-runner.ts index 40c971a..b59f807 100644 --- a/packages/macp/src/gate-runner.ts +++ b/packages/macp/src/gate-runner.ts @@ -43,7 +43,7 @@ export function runShell( let timedOut = false; try { - const result = spawnSync('bash', ['-lc', command], { + const result = spawnSync('sh', ['-c', command], { cwd, timeout: Math.max(1, timeoutSec) * 1000, encoding: 'utf-8',