Skip to content

Commit

Permalink
Do not format output (consolidation#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-teck authored and greg-1-anderson committed Apr 2, 2019
1 parent 790ed6a commit a27fb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Util/RealtimeOutputHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ public function __invoke($type, $buffer)
public function handleOutput($type, $buffer)
{
if (Process::ERR === $type) {
$this->stderr->write($this->addMarker($buffer, $this->stderrMarker));
$this->stderr->write($this->addMarker($buffer, $this->stderrMarker), false, OutputInterface::OUTPUT_RAW);
} else {
$this->stdout->write($this->addMarker($buffer, $this->stdoutMarker));
$this->stdout->write($this->addMarker($buffer, $this->stdoutMarker), false, OutputInterface::OUTPUT_RAW);
}
}

Expand Down

0 comments on commit a27fb77

Please sign in to comment.