We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7561d6b commit a6dbae1Copy full SHA for a6dbae1
1 file changed
dist/wbstack/src/Internal/PreApiWbStackUpdate.php
@@ -38,13 +38,13 @@ public function execute() {
38
39
while( $line = fgets( $stdoutProc ) ) {
40
$line = rtrim( $line );
41
- fwrite( $stdout, $line );
+ fwrite( $stdout, $line . PHP_EOL );
42
array_push( $out, $line );
43
}
44
45
while( $line = fgets( $stderrProc ) ) {
46
47
- fwrite( $stdout, $line ); // effectively redirecting stdErr to stdOut
+ fwrite( $stdout, $line . PHP_EOL ); // effectively redirecting stdErr to stdOut
48
49
50
0 commit comments