don’t bother to set OSX DMG icon on old systems

`sips -i` fails on 10.5 and SetFile does not work even if
the resource file is provided.
This commit is contained in:
Robin Gareus 2015-07-23 18:27:07 +02:00
parent e1f168de11
commit 45c9f6b2ff
1 changed files with 3 additions and 0 deletions

View File

@ -769,6 +769,7 @@ hdiutil eject "${DiskDevice}" || true
# Create a read-only version, use zlib compression
hdiutil convert -format UDZO "${TMPDMG}" -imagekey zlib-level=9 -o "${UC_DMG}"
if test $(sw_vers -productVersion | cut -d '.' -f 2) -gt 5; then
echo "setting file icon ..."
cp ${PRODUCT_PKG_DIR}/$Resources/appIcon.icns ${ICNSTMP}.icns
@ -778,6 +779,8 @@ Rez -append ${ICNSTMP}.rsrc -o "$UC_DMG"
SetFile -a C "$UC_DMG"
rm ${ICNSTMP}.icns ${ICNSTMP}.rsrc
fi
rm -rf ${PRODUCT_PKG_DIR}
echo