fix(macp): use sh instead of bash in gate-runner — Alpine Linux compatibility
Some checks failed
ci/woodpecker/pr/ci Pipeline failed
ci/woodpecker/push/ci Pipeline failed

This commit is contained in:
Jarvis
2026-03-30 20:31:39 -05:00
parent 47b7509288
commit 85d4527701

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',