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
This function is designed to be a shortcut for calling a function but it accepting the same process options as the full open function means you could do stuff like set stdout to Ignore. In this case would you expect the stdout bytes in the execute callback to be null? You could also configure stdin but then have no way to interact with it.
This seems pretty useless so I just ignore all stdio pipe options with execute, the process options typedef should probably be split up so stdio is independent of the other config option which execute can make use of.
This function is designed to be a shortcut for calling a function but it accepting the same process options as the full
open
function means you could do stuff like set stdout to Ignore. In this case would you expect the stdout bytes in the execute callback to be null? You could also configure stdin but then have no way to interact with it.This seems pretty useless so I just ignore all stdio pipe options with
execute
, the process options typedef should probably be split up so stdio is independent of the other config option whichexecute
can make use of.The text was updated successfully, but these errors were encountered: