From 40a7853edff47946ef9968e2b3fe89701c8fafcc Mon Sep 17 00:00:00 2001 From: Wyatt Olson Date: Wed, 27 Apr 2011 20:12:01 -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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/osx/make-app-bundle b/tools/osx/make-app-bundle index 0e83d6698..55b193521 100755 --- a/tools/osx/make-app-bundle +++ b/tools/osx/make-app-bundle @@ -96,4 +96,7 @@ hdiutil create -srcdir ${APP} ${DMG} echo "Cleaning up..." rm -rf ${APP} +cd ${RELEASE} +zip ${DMG}.zip ${DMG} AboutThisBuild.txt + echo "All done!"