From d4860447b3f401ec8505c30641deb476a236dd3c Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Wed, 27 May 2020 11:07:29 -0700 Subject: [PATCH] Bump sparseimage size to 16g; eliminate extra whitespace --- installinstallmacos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installinstallmacos.py b/installinstallmacos.py index 536fcf0..360ea48 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', '9g', '-fs', 'HFS+', + cmd = ['/usr/bin/hdiutil', 'create', '-size', '16g', '-fs', 'HFS+', '-volname', volume_name, '-type', 'SPARSE', '-plist', output_path] try: output = subprocess.check_output(cmd)