From b74b6103ea53efae768212d4735cfd5399c2a53a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 26 Apr 2022 14:51:26 -0700 Subject: [PATCH] update command comments --- src/Command.zig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Command.zig b/src/Command.zig index f65eb9473..81251de74 100644 --- a/src/Command.zig +++ b/src/Command.zig @@ -8,6 +8,12 @@ //! so if we want to replatform onto std.ChildProcess I'd love to do that. //! This was just the fastest way to get something built. //! +//! Issues with std.ChildProcess: +//! +//! * No pre_exec callback for logic after fork but before exec. +//! * posix_spawn is used for Mac, but doesn't support the necessary +//! features for tty setup. +//! //! TODO: //! //! * Windows