1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-24 14:13:06 +02:00

zip scripts: remove previous zip files and add quiet flag (#38358)

This commit is contained in:
XhmikosR
2023-03-28 19:56:17 +03:00
committed by GitHub
parent c5fde53c8d
commit 1fe9067604
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ for (const file of sh.find(`${distFolder}/**/*.html`)) {
}
// create the zip file
sh.exec(`zip -r9 "${distFolder}.zip" "${distFolder}"`)
sh.exec(`zip -qr9 "${distFolder}.zip" "${distFolder}"`)
// remove the folder we created
sh.rm('-rf', distFolder)