ci: fix spawn EINVAL on Windows by adding shell option

This commit is contained in:
mkorwel
2026-04-25 02:03:27 +00:00
parent 10e2f9a2f2
commit 89e7ddf1c4
+1
View File
@@ -729,6 +729,7 @@ export class TestRig {
cwd: this.testDir!,
stdio: 'pipe',
env: this._getCleanEnv(options.env),
shell: os.platform() === 'win32',
});
this._spawnedProcesses.push(child);