Skip to content

Commit 3c759de

Browse files
authored
Update osxiso
Sequoia's USB installer has to be larger than 16 GB.
1 parent be50845 commit 3c759de

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

osxiso

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Select OS or Quit: "
1010
app_mount="/Volumes/install_app"
1111
apps_v1="|macOS Sierra|OS X El Capitan|OS X Yosemite|OS X Mavericks|"
1212
apps_v2="|macOS High Sierra|macOS Mojave|macOS Catalina|macOS Big Sur|macOS Monterey|macOS Ventura|macOS Sonoma|macOS Sequoia|"
13-
apps_large="|macOS Big Sur|macOS Monterey|macOS Ventura|macOS Sonoma||macOS Sequoia|"
13+
apps_large="|macOS Big Sur|macOS Monterey|macOS Ventura|macOS Sonoma|"
14+
apps_extra_large="||macOS Sequoia|"
1415
apps=(
1516
"macOS Sequoia"
1617
"macOS Sonoma"
@@ -127,6 +128,8 @@ Select OS or Quit: "
127128
iso_size="8125m"
128129
if [[ "$apps_large" == *"|$1|"* ]]; then
129130
iso_size="15000m"
131+
elif [[ "$apps_extra_large" == *"|$1|"* ]]; then
132+
iso_size="28000m"
130133
fi
131134
# Create a blank ISO with a Single Partition
132135
hdiutil create -o "$temp/$1.cdr" -size "$iso_size" -layout SPUD -fs HFS+J

0 commit comments

Comments
 (0)