Skip to content

Commit

Permalink
chore: refactor
Browse files Browse the repository at this point in the history
Signed-off-by: charankamarapu <kamarapucharan@gmail.com>
  • Loading branch information
charankamarapu committed Mar 21, 2024
1 parent 7628470 commit ab7bc09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keployCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ const RunKeployServer = (appCmd: string, delay: number, debug: boolean, port: nu

// Log stdout
keployProcess.stdout.on('data', (data) => {
const log = data.toString().trim();
const log = data.toString();
console.log(log);
});

// Log stderr
keployProcess.stderr.on('data', (data) => {
const log = data.toString().trim(); // Convert Buffer to string and trim whitespace
const log = data.toString(); // Convert Buffer to string and trim whitespace
console.error(log);
});

Expand Down

0 comments on commit ab7bc09

Please sign in to comment.