Skip to content

Commit

Permalink
Add macOS Sequoia 15
Browse files Browse the repository at this point in the history
  • Loading branch information
chris1111 committed Jul 22, 2024
1 parent 2eea9b6 commit 8ddb7dd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Source_Script/Download_Install_macOS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ printf "\n\e[35m
printf '\e[8;47;82t'

# Download Install macOS
# RELEASE AND BETA_Sonoma
# RELEASE AND BETA_Sequoia

CATALOG_URL="https://swscan.apple.com/content/catalogs/others/index-14seed-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"
CATALOG_URL="https://swscan.apple.com/content/catalogs/others/index-15seed-15-14-13-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"

echo " "
# DOWNLOADING CATALOG
Expand Down Expand Up @@ -111,7 +111,9 @@ MAJOR_VERSION=$(echo $SELECTED_BUILD_INFO | cut -d, -f1 | cut -d. -f1,2)
BASE_URL=$(echo $SELECTED_BUILD_INFO | cut -d, -f3)
MACOS_VERSION=""

if [[ "$MAJOR_VERSION" == "14."* ]]; then
if [[ "$MAJOR_VERSION" == "15."* ]]; then
MACOS_VERSION="Sequoia"
elif [[ "$MAJOR_VERSION" == "14."* ]]; then
MACOS_VERSION="Sonoma"
elif [[ "$MAJOR_VERSION" == "13."* ]]; then
MACOS_VERSION="Ventura"
Expand All @@ -130,7 +132,7 @@ fi

# DOWNLOADING_INSTALLATION_FILES
INSTALLATION_FILES=()
if [[ $MACOS_VERSION == "Sonoma" ]] || [[ "$MACOS_VERSION" == "Ventura" ]] || [[ "$MACOS_VERSION" == "Monterey" ]] || [[ "$MACOS_VERSION" == "BigSur" ]]; then
if [[ $MACOS_VERSION == "Sequoia" ]] || [[ $MACOS_VERSION == "Sonoma" ]] || [[ "$MACOS_VERSION" == "Ventura" ]] || [[ "$MACOS_VERSION" == "Monterey" ]] || [[ "$MACOS_VERSION" == "BigSur" ]]; then
INSTALLATION_FILES=("InstallAssistant.pkg")
else
INSTALLATION_FILES=("BaseSystem.chunklist" "InstallInfo.plist" "AppleDiagnostics.dmg" "AppleDiagnostics.chunklist" "BaseSystem.dmg" "InstallESDDmg.pkg")
Expand Down

0 comments on commit 8ddb7dd

Please sign in to comment.