Skip to content

Commit 07560d1

Browse files
committed
builtin completion
1 parent 49724ff commit 07560d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/ExternalCommand.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ class ExternalCommand extends Command {
3333
child.stdout.on('data', (data) => {
3434
const output = data.toString();
3535
stdout += output;
36-
this.outputHandler.write(output, true);
36+
this.outputHandler.write(output, false);
3737
resolve(stdout);
3838
});
3939

4040
child.stderr.on('data', (data) => {
4141
const output = data.toString();
4242
stderr += output;
43-
this.outputHandler.writeError(output, true);
43+
this.outputHandler.writeError(output, false);
4444
resolve(stderr);
4545
});
4646
});

app/OutputHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class OutputHandler {
8585
this._initializeFile();
8686
}
8787
if (newLine) {
88-
process.stderr.write(`${message}`);
88+
process.stderr.write(`${message}` + '\n');
8989
} else {
9090
process.stderr.write(message);
9191
}

0 commit comments

Comments
 (0)