aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-04-25 16:33:46 +0000
committerrowanbeentje <rowan@beent.je>2009-04-25 16:33:46 +0000
commitd84ab1d4372f54d04c6619061a2f2fb56f5d2097 (patch)
treed4a24cc426164c4e93c67ba30c842bbd1d9d288b
parent30ab5b13adae0d12a27c617d24bd690fa0e0b535 (diff)
downloadsequelpro-d84ab1d4372f54d04c6619061a2f2fb56f5d2097.tar.gz
sequelpro-d84ab1d4372f54d04c6619061a2f2fb56f5d2097.tar.bz2
sequelpro-d84ab1d4372f54d04c6619061a2f2fb56f5d2097.zip
- Change disk image compression from UBZO to UBDZ - 10.4+, which is fine, and ~10% smaller distribution file
-rwxr-xr-xScripts/package-application.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Scripts/package-application.sh b/Scripts/package-application.sh
index efe63717..680cfb23 100755
--- a/Scripts/package-application.sh
+++ b/Scripts/package-application.sh
@@ -45,7 +45,7 @@ cp -R "${BUILT_PRODUCTS_DIR}/${TARGET_NAME}${WRAPPER_SUFFIX}" "${DMG_BUILD_PATH}
hdiutil create -srcfolder "${DISTTEMP}" -volname "$DMG_VOLUME_NAME" -fs HFS+ -fsargs '-c c=64,a=16,e=16' -format UDRW "${DMG_BUILD_PATH}/${DMG_NAME}.temp.dmg" > /dev/null
# Compress the disk image
-hdiutil convert "${DMG_BUILD_PATH}/${DMG_NAME}.temp.dmg" -format UDZO -imagekey lib-level=9 -o "${DMG_BUILD_PATH}/${DMG_NAME}.dmg" > /dev/null
+hdiutil convert "${DMG_BUILD_PATH}/${DMG_NAME}.temp.dmg" -format UDBZ -o "${DMG_BUILD_PATH}/${DMG_NAME}.dmg" > /dev/null
# Remove temporary files and copies
rm -rf "${DISTTEMP}"