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 91c670f commit 9ae6a9eCopy full SHA for 9ae6a9e
scripts/build.js
@@ -129,8 +129,8 @@ try {
129
console.log('\x1b[33mRemoved existing zip file\x1b[0m');
130
}
131
132
- // Create zip file using native zip command with maximum compression
133
- execSync(`cd "${distPath}" && zip -9 -r "${zipFileName}" mac/Sploder.app`, { stdio: 'inherit' });
+ // Create zip file using native zip command with maximum compression (silent)
+ execSync(`cd "${distPath}" && zip -q -9 -r "${zipFileName}" mac/Sploder.app`, { stdio: 'inherit' });
134
135
// Check and log the final zip file size
136
if (fs.existsSync(zipFilePath)) {
0 commit comments