Skip to content

Commit

Permalink
fix: reduce compression of zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
Avivbens committed Jun 6, 2024
1 parent cb1da97 commit 975beba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project-scripts/pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async function writeWorkflowPackageJson(
*/
console.log('Zipping...')
// await execPromise(`zip -9 dist/cli.zip dist/cli-v${targetVersion}`)
await execPromise(`cd dist && zip -9 -r "cli.zip" ./cli-v${targetVersion}`)
await execPromise(`cd dist && zip -r "cli.zip" ./cli-v${targetVersion}`)
} catch (error) {
console.error(`Error: ${error.stack}`)
}
Expand Down

0 comments on commit 975beba

Please sign in to comment.