You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2026. It is now read-only.
I learned recently if you waitUntilExit without first draining the standard output and error streams the system can deadlock, because it refuses to allow more data to be streamed out of the child process when its output buffers become full. Congratulations on being one of the very rare packages out there that handles this correctly!
When I was looking to see if I could use this package for that solution in my project, I noticed the unconditional trimming of final newlines. There are tools that don't automatically end their output with a newline, where having a final newline or not could be a significant part of the output. See for example find with the -print0 option. Trimming that character should be a choice made by the client of this library.