update command comments

This commit is contained in:
Mitchell Hashimoto
2022-04-26 14:51:26 -07:00
parent 22c34512cb
commit b74b6103ea

View File

@ -8,6 +8,12 @@
//! so if we want to replatform onto std.ChildProcess I'd love to do that. //! 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. //! 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: //! TODO:
//! //!
//! * Windows //! * Windows