-
Notifications
You must be signed in to change notification settings - Fork 841
New issue
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
Be less verbose when extracting GHC #1212
Comments
For an example of sluggish and huge output https://ci.appveyor.com/project/ndmitchell/neil/build/1.0.1 |
Current workaround I use is |
I agree, it's really annoying. I don't see a command-line option for 7z to disable all the output. I think we'll have to swallow the stdout in this code. Might be as simple as switching to using readProcessNull instead of |
A better option would be to swallow the lines and turn it into a single . per line, or even better, a single . per 1% of files. |
Opened #4643 |
…ndows Less verbose stack setup on Windows (fixes #1212)
Given
stack --arch i386 --no-terminal --install-ghc build
, that produces about 20K lines of output of the formExtracting ...
. That level of output makes it impossible to find anything in my console, and also means that for CI system (e.g. appveyor) it becomes ridiculously sluggish to navigate. Perhaps pass a quieter option to 7zip? Updates every 10 seconds on how many files have been extracted so far would be fine, or a . for each file, or something else.The text was updated successfully, but these errors were encountered: