Skip to content
Snippets Groups Projects
Commit 35c24afc authored by Cam Saül's avatar Cam Saül
Browse files

Increase max uncompressed size of Mac App DMG [ci skip]

parent efa5bc3f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment