Added Rosetta to development tools install script

Necessary for Apple Silicon machines -- at least for the time being --
in order to translate Intel based programs that are not ready to run
natively of Silicon hardware yet.
This commit is contained in:
Brooke Kuhlmann
2021-02-21 16:09:46 -07:00
parent eaefe9fa04
commit e4ef33a5f6

View File

@@ -11,3 +11,7 @@ if [[ "$xcode_response" != "y" ]]; then
printf "ERROR: Xcode CLI tools must be installed before proceeding.\n"
exit 1
fi
if [[ -n "$(get_cpu)" ]]; then
softwareupdate --install-rosetta
fi