From 28b25337d969947b75e889d7df6fcdb15a5c45fc Mon Sep 17 00:00:00 2001 From: Wyatt Olson Date: Wed, 27 Apr 2011 20:02:51 -0600 Subject: [PATCH] Updated make-app-bundle to zip the .dmg with the about text file, for upload to site. --- tools/osx/make-app-bundle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/osx/make-app-bundle b/tools/osx/make-app-bundle index 0e83d6698..bb25c1e01 100755 --- a/tools/osx/make-app-bundle +++ b/tools/osx/make-app-bundle @@ -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!"