Skip to content

Commit f7f83d1

Browse files
Apply prepare changes
1 parent 2547859 commit f7f83d1

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

utils/desktop.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,12 @@ async function createNewWindow() {
7676
shell: true,
7777
});
7878

79-
server.stdout.on("data", (data) => { console.log(`[NITRO] ${data.toString()}`) });
80-
server.stderr.on("data", (data) => { console.log(`[NITRO] ${data.toString()}`) });
79+
server.stdout.on("data", (data) => {
80+
console.log(`[NITRO] ${data.toString()}`);
81+
});
82+
server.stderr.on("data", (data) => {
83+
console.log(`[NITRO] ${data.toString()}`);
84+
});
8185

8286
const controller = new AbortController();
8387
const expectedResponse = `Listening on http://[::]:${PORT}`;

0 commit comments

Comments
 (0)