Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Jul 5, 2024
1 parent 3a473f3 commit 437b687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ export async function exec(

if (captureOutput) {
cp.stdout?.on("data", (data) => {
console.log("STDOUT:", data);
console.log("STDOUT:", data.toString());
output += data;
});
cp.stderr?.on("data", (data) => {
console.log("STDERR:", data);
console.log("STDERR:", data.toString());
output += data;
});
}
Expand Down

0 comments on commit 437b687

Please sign in to comment.