From f989334a11ba6fc853929652742b3bf56ba99b87 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sat, 12 Oct 2019 10:32:43 -0600 Subject: [PATCH] Updated to macOS Catalina. [Features](https://www.apple.com/macos/catalina). --- README.md | 2 +- bin/create_boot_disk | 2 +- lib/settings.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89f34e7..646e1ed 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ the two projects are meant to be used: ## Requirements -1. [macOS Mojave](https://www.apple.com/macos) (with latest software updates applied) +1. [macOS Catalina](https://www.apple.com/macos/catalina) (with latest software updates applied) 1. [Xcode](https://developer.apple.com/xcode) (with accepted license agreement) ## Setup diff --git a/bin/create_boot_disk b/bin/create_boot_disk index 1f5b4c2..453ed04 100755 --- a/bin/create_boot_disk +++ b/bin/create_boot_disk @@ -23,7 +23,7 @@ printf " 5. Use the dialog options to launch Disk Utility, reinstall the system printf "\nCreating macOS boot disk...\n" if [[ ! -e "$MAC_OS_BOOT_DISK_CREATOR" ]]; then - printf "ERROR: macOS installer does not exist: $MAC_OS_BOOT_DISK_CREATOR. Use App Store to download.\n" + printf "ERROR: macOS installer does not exist: $MAC_OS_BOOT_DISK_CREATOR. Use System Preferences → Software Update to download.\n" exit 1 fi diff --git a/lib/settings.sh b/lib/settings.sh index 2d0bcb9..b01e264 100644 --- a/lib/settings.sh +++ b/lib/settings.sh @@ -5,7 +5,7 @@ set -o errexit set -o pipefail IFS=$'\n\t' -export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Mojave.app/Contents/Resources/createinstallmedia" +export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Catalina.app/Contents/Resources/createinstallmedia" export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled" export MAC_OS_WORK_PATH=/tmp/downloads export MAC_OS_CONFIG_PATH="../mac_os-config"