I was trying out typed-process on this repo as a learning exercise and noticed that the call to runInteractiveCommand has flipped the names of the handles.
runInteractiveCommand :: String -> IO (Handle, Handle, Handle, ProcessHandle)
Runs a command using the shell, and returns Handles that may be used to communicate with the process via its stdin, stdout, and stderr respectively.
runInteractiveCommand
I was trying out
typed-process
on this repo as a learning exercise and noticed that the call torunInteractiveCommand
has flipped the names of the handles.