ci: preserve docker test runner path

This commit is contained in:
Peter Steinberger
2026-04-26 23:04:18 +01:00
parent d9e9e61e77
commit 1b1eea238c

View File

@@ -823,7 +823,7 @@ function dockerPreflightContainerNames(raw) {
function runShellCommand({ command, env, label, logFile, timeoutMs }) {
return new Promise((resolve) => {
const child = spawn("bash", ["-lc", command], {
const child = spawn("bash", ["-c", command], {
cwd: ROOT_DIR,
detached: process.platform !== "win32",
env,
@@ -875,7 +875,7 @@ function runShellCommand({ command, env, label, logFile, timeoutMs }) {
function runShellCaptureCommand({ command, env, label, timeoutMs }) {
return new Promise((resolve) => {
const child = spawn("bash", ["-lc", command], {
const child = spawn("bash", ["-c", command], {
cwd: ROOT_DIR,
detached: process.platform !== "win32",
env,