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
The current runAsync doesn't allow me to see the live output of a running task.
The docs say:
/// If [quiet] is false, [log]s the stdout as line breaks are encountered. /// The stderr is always logged.
I'd really instead like to simply pipe stdout from the Process to the console's stdout.
In my example, I am writing . when something happens... I'm not writing newlines.
.
The text was updated successfully, but these errors were encountered:
This is the workaround I'm using:
var process = await Process.start('dart', [ 'bin/dartdoc.dart', '--output', '${docsDir.path}', '--sdk-docs', '--show-progress' ]); stdout.addStream(process.stdout); stderr.addStream(process.stderr);
Instead of the old runAsync
runAsync
Sorry, something went wrong.
No branches or pull requests
The current runAsync doesn't allow me to see the live output of a running task.
The docs say:
I'd really instead like to simply pipe stdout from the Process to the console's stdout.
In my example, I am writing
.
when something happens... I'm not writing newlines.The text was updated successfully, but these errors were encountered: