Skip to content

Commit

Permalink
fix: no more display misleading chunk errors
Browse files Browse the repository at this point in the history
  • Loading branch information
axe312ger committed Aug 19, 2021
1 parent 329f54e commit 88946bc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ async function streamOutputUntilResolved(

if (stderr) {
stderr.on("data", data => {
if (!data) {
return;
}
console.error(`Received error chunk ${data}`);
});
}
Expand Down

0 comments on commit 88946bc

Please sign in to comment.