From fa22d97c9bd4d5de4b62e18bed3a975dcb2cd65a Mon Sep 17 00:00:00 2001 From: aysiu Date: Tue, 24 Mar 2020 18:57:01 -0700 Subject: [PATCH] 9GB sparse disk image to accommodate 10.15.4 Addresses this issue: https://github.com/munki/macadmin-scripts/issues/46 --- installinstallmacos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installinstallmacos.py b/installinstallmacos.py index 5b63bbb..a9159fe 100755 --- a/installinstallmacos.py +++ b/installinstallmacos.py @@ -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)