Skip to content

Commit

Permalink
Compress ISOs with maximum ZIP compression level (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFinck authored Aug 31, 2024
1 parent 27108f1 commit 75c859f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Release_ISOs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ ninja livecd || exit 1

# Create the ZIP packages
mv "bootcd.iso" "${BOOTCDISO}" || exit 1
zip "${ROOTDIR}/${BOOTCDZIP}" "${BOOTCDISO}" || exit 1
zip -9 "${ROOTDIR}/${BOOTCDZIP}" "${BOOTCDISO}" || exit 1
mv "livecd.iso" "${LIVECDISO}" || exit 1
zip "${ROOTDIR}/${LIVECDZIP}" "${LIVECDISO}" || exit 1
zip -9 "${ROOTDIR}/${LIVECDZIP}" "${LIVECDISO}" || exit 1

# We're done!
echo
Expand Down

0 comments on commit 75c859f

Please sign in to comment.