Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update app for Sonoma #13

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
The appropriate installation app file(s) must be located in `/Applications` i.e.

```
/Applications/Install macOS Sonoma.app
/Applications/Install macOS Ventura.app
/Applications/Install macOS Monterey.app
/Applications/Install macOS Big Sur.app
/Applications/Install macOS Catalina.app
Expand Down
8 changes: 5 additions & 3 deletions osxiso
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ Select OS or Quit: "
build_mount="/Volumes/install_build"
app_mount="/Volumes/install_app"
apps_v1="|macOS Sierra|OS X El Capitan|OS X Yosemite|OS X Mavericks|"
apps_v2="|macOS High Sierra|macOS Mojave|macOS Catalina|macOS Big Sur|macOS Monterey|"
apps_large="|macOS Big Sur|macOS Monterey|"
apps_v2="|macOS High Sierra|macOS Mojave|macOS Catalina|macOS Big Sur|macOS Monterey|macOS Ventura|macOS Sonoma|"
apps_large="|macOS Big Sur|macOS Monterey|macOS Ventura|macOS Sonoma|"
apps=(
"macOS Sonoma"
"macOS Ventura"
"macOS Monterey"
"macOS Big Sur"
"macOS Catalina"
Expand Down Expand Up @@ -123,7 +125,7 @@ Select OS or Quit: "

iso_size="8125m"
if [[ "$apps_large" == *"|$1|"* ]]; then
iso_size="13750m"
iso_size="15000m"
fi
# Create a blank ISO with a Single Partition
hdiutil create -o "$temp/$1.cdr" -size "$iso_size" -layout SPUD -fs HFS+J
Expand Down