Skip to content

Commit a6dbae1

Browse files
deer-wmdedati18
authored andcommitted
sync dist-persist
1 parent 7561d6b commit a6dbae1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dist/wbstack/src/Internal/PreApiWbStackUpdate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ public function execute() {
3838

3939
while( $line = fgets( $stdoutProc ) ) {
4040
$line = rtrim( $line );
41-
fwrite( $stdout, $line );
41+
fwrite( $stdout, $line . PHP_EOL );
4242
array_push( $out, $line );
4343
}
4444

4545
while( $line = fgets( $stderrProc ) ) {
4646
$line = rtrim( $line );
47-
fwrite( $stdout, $line ); // effectively redirecting stdErr to stdOut
47+
fwrite( $stdout, $line . PHP_EOL ); // effectively redirecting stdErr to stdOut
4848
array_push( $out, $line );
4949
}
5050

0 commit comments

Comments
 (0)