Skip to content

Commit 2ab5f59

Browse files
committed
remove zip -q flag
1 parent 0ef1de1 commit 2ab5f59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-serverless/scripts/buildLambdaLayer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async function buildLambdaLayer(): Promise<void> {
4848
const zipFilename = `sentry-node-serverless-${version}.zip`;
4949
console.log(`Creating final layer zip file ${zipFilename}.`);
5050
// need to preserve the symlink above with -y
51-
run(`zip -r -y -q ${zipFilename} .`, { cwd: 'build/aws/dist-serverless' });
51+
run(`zip -r -y ${zipFilename} .`, { cwd: 'build/aws/dist-serverless' });
5252
}
5353

5454
// eslint-disable-next-line @typescript-eslint/no-floating-promises

0 commit comments

Comments
 (0)