diff --git a/src/bun.js/api/bun/subprocess.zig b/src/bun.js/api/bun/subprocess.zig index ae32bdab8a..bb8ce7321d 100644 --- a/src/bun.js/api/bun/subprocess.zig +++ b/src/bun.js/api/bun/subprocess.zig @@ -2196,7 +2196,7 @@ pub const Subprocess = struct { } } - if (args.get(globalThis, "ipc")) |val| { + if (args.getTruthy(globalThis, "ipc")) |val| { if (Environment.isWindows) { globalThis.throwTODO("TODO: IPC is not yet supported on Windows"); return .zero;