Skip to content
Snippets Groups Projects
Commit c3a329fc authored by Cam Saül's avatar Cam Saül Committed by GitHub
Browse files

Merge pull request #5069 from metabase/update-osx-build-script

Increase max uncompressed size of Mac App DMG [ci skip]
parents efa5bc3f 35c24afc
Branches
Tags
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.
Please register or to comment