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
using macOS 10.13.4, ghc 8.0.2, shelly-1.7.2
the following command blocks indefinitely:
ghci -XOverloadedStrings :m +Data.List Data.Text Shelly shelly $ setStdin (pack $ Prelude.take 1000000 . repeat $ 'a') >> (fmap (Data.Text.take 200) $ run "cat" []) >>= echo
if you replace 1000000 with something shorter like 100000 or 1000, then this command succeeds. Looks like a buffering/laziness issue.
1000000
100000
1000
The text was updated successfully, but these errors were encountered:
No branches or pull requests
using macOS 10.13.4, ghc 8.0.2, shelly-1.7.2
the following command blocks indefinitely:
if you replace
1000000
with something shorter like100000
or1000
, then this command succeeds. Looks like a buffering/laziness issue.The text was updated successfully, but these errors were encountered: