Updated to macOS Tahoe

Necessary to leverage the latest operating system version.

Milestone: major
This commit is contained in:
Brooke Kuhlmann
2025-09-16 20:05:34 -06:00
parent 8bafdda425
commit 76fd15a82f
2 changed files with 13 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ toc::[]
== Requirements == Requirements
. link:https://www.apple.com/macos/macos-sequoia[macOS 15.0.0 (Sequoia)] . link:https://www.apple.com/os/macos[macOS 26.0.0 (Tahoe)]
. link:https://developer.apple.com/xcode[Xcode] . link:https://developer.apple.com/xcode[Xcode]
== Setup == Setup
@@ -141,6 +141,17 @@ macOS Boot Disk Recovery:
4. Use the dialog options to launch Disk Utility, reinstall the system, etc. 4. Use the dialog options to launch Disk Utility, reinstall the system, etc.
.... ....
💡 You can ensure the right installer is downloaded and available for Boot Disk creation by running the following commands:
[source,bash]
----
# Show which installers are available.
softwareupdate --list-full-installers
# Download desired version.
sudo softwareupdate --fetch-full-installer --full-installer-version 26.0
----
=== Customization === Customization
All executable scripts can be found in the `bin` folder: All executable scripts can be found in the `bin` folder:

View File

@@ -5,7 +5,7 @@ set -o errexit
set -o pipefail set -o pipefail
IFS=$'\n\t' IFS=$'\n\t'
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Sequoia.app/Contents/Resources/createinstallmedia" export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Tahoe.app/Contents/Resources/createinstallmedia"
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled" export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
export MAC_OS_WORK_PATH=/tmp/downloads export MAC_OS_WORK_PATH=/tmp/downloads
export MAC_OS_CONFIG_PATH="../mac_os-config" export MAC_OS_CONFIG_PATH="../mac_os-config"