Skip to content

Commit

Permalink
fix: do not fill output buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed Nov 23, 2024
1 parent eac7d25 commit f578335
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/packager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,9 @@ export async function uploadPackage(
['cp', '--recursive', stagingDir, dest.toString()],
s3EndpointUrl
);
const { status, stderr, error } = spawnSync('aws', args);
const { status, stderr, error } = spawnSync('aws', args, {
stdio: 'ignore'
});
if (status !== 0) {
if (error) {
console.error(`Upload failed: ${error.message}`);
Expand Down

0 comments on commit f578335

Please sign in to comment.