Updated make-app-bundle to zip the .dmg with the about text file, for upload to site.

This commit is contained in:
Wyatt Olson 2011-04-27 20:02:51 -06:00
parent b44ead49b2
commit 28b25337d9

View File

@ -49,6 +49,7 @@ if [ -d "${APP}" ]; then
fi
echo "Removing any old disk images..."
rm ${RELEASE}/rawtherapee*.dmg
rm ${RELEASE}/rawtherapee*.dmg.zip
echo "Making application directory structure..."
mkdir -p "${RESOURCES}"
@ -96,4 +97,7 @@ hdiutil create -srcdir ${APP} ${DMG}
echo "Cleaning up..."
rm -rf ${APP}
cd ${RELEASE}
zip ${DMG}.zip ${DMG} AboutThisBuild.txt
echo "All done!"