We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing the output from forked processes fails when you do output yourself, e.g.:
main = do putStrLn "Hello!" mainWith (do ...
will fail with
program: Prelude.read: no parse
I don't think that this necessarily needs to be fixed, but it certainly should be documented.
The text was updated successfully, but these errors were encountered:
Perhaps a cheap solution is to write the output to a temp file, rather than communicate via pipe.
Sorry, something went wrong.
More descriptive error for stdout munging (#3)
554e8fa
I put in a more descriptive error message for now.
Use temp file for process comms (#3)
fc465c9
I changed it to write to a temporary file instead in 0.0.4.
chrisdone
No branches or pull requests
Parsing the output from forked processes fails when you do output yourself, e.g.:
will fail with
I don't think that this necessarily needs to be fixed, but it certainly should be documented.
The text was updated successfully, but these errors were encountered: