From bb5777ce7c1578538196ff56fb8bd2f927783616 Mon Sep 17 00:00:00 2001 From: Will Pragnell Date: Thu, 9 Jan 2025 21:57:22 -0800 Subject: [PATCH] Command: add comment about wait blocking on Windows --- src/Command.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Command.zig b/src/Command.zig index 9be75d695..12286b29c 100644 --- a/src/Command.zig +++ b/src/Command.zig @@ -306,6 +306,7 @@ fn setupFd(src: File.Handle, target: i32) !void { } /// Wait for the command to exit and return information about how it exited. +/// "block" is currently not respected on Windows. pub fn wait(self: Command, block: bool) i32 { if (comptime builtin.os.tag == .windows) { // Block until the process exits. This returns immediately if the