We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef1de1 commit 2ab5f59Copy full SHA for 2ab5f59
packages/aws-serverless/scripts/buildLambdaLayer.ts
@@ -48,7 +48,7 @@ async function buildLambdaLayer(): Promise<void> {
48
const zipFilename = `sentry-node-serverless-${version}.zip`;
49
console.log(`Creating final layer zip file ${zipFilename}.`);
50
// need to preserve the symlink above with -y
51
- run(`zip -r -y -q ${zipFilename} .`, { cwd: 'build/aws/dist-serverless' });
+ run(`zip -r -y ${zipFilename} .`, { cwd: 'build/aws/dist-serverless' });
52
}
53
54
// eslint-disable-next-line @typescript-eslint/no-floating-promises
0 commit comments