-
-
Notifications
You must be signed in to change notification settings - Fork 646
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
Output from tasks is not streaming #190
Comments
Hi @sheerun, Task has a configuration to choose how it redirects output from commands: https://taskfile.dev/#/usage?id=output-syntax Which one are you using? (Default is The behavior you're describing is the expected for |
I'm using the defaults. Here is my Taskfile:
I'd expect that it has streaming output |
Indeed, there seems to be a bug there. I haven't noticed that for other commands. Maybe it's specific to Ruby. |
I have long-running task that outputs some logs in the console. Unfortunately when it's run through go-task, the output is displayed only when task finishes, which can take long time.
Is it possible to receive streaming output from currently executed task? i.e. how to make go-task output line of logs immediately after running task is outputting it
The text was updated successfully, but these errors were encountered: