Skip to content
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

outputs are interleaved when newlines are missing #276

Open
milahu opened this issue May 8, 2021 · 0 comments
Open

outputs are interleaved when newlines are missing #276

milahu opened this issue May 8, 2021 · 0 comments
Labels

Comments

@milahu
Copy link

milahu commented May 8, 2021

$ node bin/concurrently.js --names x,o "bash -c \"while true; do printf x; sleep 0.2; done\"" "bash -c \"while true; do printf o; sleep 0.2; done\""
[x] xoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxoxo^Cbash -c "while true; do printf x; sleep 0.2; done" exited with code SIGINT
[o] bash -c "while true; do printf o; sleep 0.2; done" exited with code SIGINT

expected: flush early, dont wait for newline + remember last command to continue line

[x] x
[o] o
[x] x
[o] o

slightly related to #168

would be easy to solve with #247

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants