Merge pull request #47 from aysiu/patch-1

9GB sparse disk image to accommodate 10.15.4
This commit is contained in:
Greg Neagle 2020-03-27 08:09:36 -07:00 committed by GitHub
commit 58b7d0d436
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ def get_default_catalog():
def make_sparse_image(volume_name, output_path):
'''Make a sparse disk image we can install a product to'''
cmd = ['/usr/bin/hdiutil', 'create', '-size', '8g', '-fs', 'HFS+',
cmd = ['/usr/bin/hdiutil', 'create', '-size', '9g', '-fs', 'HFS+',
'-volname', volume_name, '-type', 'SPARSE', '-plist', output_path]
try:
output = subprocess.check_output(cmd)