Skip to content

Commit

Permalink
Preserve line endings in value generator
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarypiatek committed Oct 5, 2024
1 parent b80720d commit 976ad76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ await Cli.Wrap(commandPath)
.WithStandardInputPipe(PipeSource.FromStream(inputStream,autoFlush:true))
.WithStandardOutputPipe(PipeTarget.ToDelegate(s =>
{
rawOutput.Append(s);
rawOutput.AppendLine(s);
AppendToOutput(s, ConsoleOutputLevel.Normal);
}))
.WithStandardErrorPipe(PipeTarget.ToDelegate(s =>
Expand Down

0 comments on commit 976ad76

Please sign in to comment.