This commit is contained in:
Jarred Sumner
2024-01-30 10:04:03 -08:00
parent 58132dc9da
commit cb63d2bf69
9 changed files with 365 additions and 193 deletions

View File

@@ -1279,7 +1279,7 @@ pub fn NewShellSubprocess(comptime EventLoopKind: JSC.EventLoopKind, comptime Sh
}
pub fn wait(this: *@This(), sync: bool) void {
return this.process.wait(sync);
return this.process.waitPosix(sync);
}
pub fn onProcessExit(this: *@This(), _: *Process, status: bun.spawn.Status, _: *const bun.spawn.Rusage) void {