From 35c24afc80d80bf5fa2b8c95654d32479a69f7a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cam=20Sa=C3=BCl?= <cammsaul@gmail.com> Date: Wed, 10 May 2017 13:58:32 -0700 Subject: [PATCH] Increase max uncompressed size of Mac App DMG [ci skip] --- bin/osx-release | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/osx-release b/bin/osx-release index 868747e5ccc..0165e4b9156 100755 --- a/bin/osx-release +++ b/bin/osx-release @@ -187,8 +187,10 @@ sub create_dmg_from_source_dir { '-fs', 'HFS+', '-fsargs', '-c c=64,a=16,e=16', '-format', 'UDRW', - '-size', '256MB', # it looks like this can be whatever size we want; compression slims it down + '-size', '512MB', # has to be big enough to hold everything uncompressed, but doesn't matter if there's extra space -- compression slims it down $dmg_filename) == 0 or die $!; + + announce "$dmg_filename created."; } # Mount the disk image, return the device name -- GitLab