From f722236978de548fe28e89baac2fbceb612e11d4 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:39:47 -0800 Subject: [PATCH] [windows] Make child_process.spawn not say "TODO: IPC" when IPC isn't used --- src/bun.js/api/bun/subprocess.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;