fix(macp): use sh instead of bash in gate-runner — Alpine Linux compatibility

This commit is contained in:
2026-03-30 20:31:39 -05:00
parent 47b7509288
commit 85d4527701
+1 -1
View File
@@ -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',