Skip to content

Commit f5014fd

Browse files
committed
Avoid having so many newlines
1 parent 448ada0 commit f5014fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/code-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function startServer(programArgs) {
4646
const proc = cp.spawn(process.execPath, [entryPoint, ...programArgs], { env, stdio: [process.stdin, null, process.stderr] });
4747
proc.stdout.on('data', e => {
4848
const data = e.toString();
49-
console.log(data);
49+
process.stdout.write(data);
5050
const m = data.match(/Web UI available at (.*)/);
5151
if (m) {
5252
s(m[1]);

0 commit comments

Comments
 (0)