File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ class ExternalCommand extends Command {
33
33
child . stdout . on ( 'data' , ( data ) => {
34
34
const output = data . toString ( ) ;
35
35
stdout += output ;
36
- this . outputHandler . write ( output , true ) ;
36
+ this . outputHandler . write ( output , false ) ;
37
37
resolve ( stdout ) ;
38
38
} ) ;
39
39
40
40
child . stderr . on ( 'data' , ( data ) => {
41
41
const output = data . toString ( ) ;
42
42
stderr += output ;
43
- this . outputHandler . writeError ( output , true ) ;
43
+ this . outputHandler . writeError ( output , false ) ;
44
44
resolve ( stderr ) ;
45
45
} ) ;
46
46
} ) ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ class OutputHandler {
85
85
this . _initializeFile ( ) ;
86
86
}
87
87
if ( newLine ) {
88
- process . stderr . write ( `${ message } ` ) ;
88
+ process . stderr . write ( `${ message } ` + '\n' ) ;
89
89
} else {
90
90
process . stderr . write ( message ) ;
91
91
}
You can’t perform that action at this time.
0 commit comments