Skip to content

Commit 85c643e

Browse files
committed
macOS 26 updates
1 parent 77e507e commit 85c643e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

installinstallmacos.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@
7474
'-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog',
7575
'24': 'https://swscan.apple.com/content/catalogs/others/'
7676
'index-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9'
77+
'-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog',
78+
'25': 'https://swscan.apple.com/content/catalogs/others/'
79+
'index-26-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9'
7780
'-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog'
7881
}
7982

@@ -152,7 +155,8 @@ def get_default_catalog():
152155

153156
def make_sparse_image(volume_name, output_path):
154157
'''Make a sparse disk image we can install a product to'''
155-
cmd = ['/usr/bin/hdiutil', 'create', '-size', '16g', '-fs', 'HFS+',
158+
# note: for macOS 26 Tahoe we needed to increase the size
159+
cmd = ['/usr/bin/hdiutil', 'create', '-size', '20g', '-fs', 'HFS+',
156160
'-volname', volume_name, '-type', 'SPARSE', '-plist', output_path]
157161
try:
158162
output = subprocess.check_output(cmd)

0 commit comments

Comments
 (0)