These tools were originally necessary for some of the Homebrew applications to install successfully (especially Elasticsearch) but those requirements are no longer necessary. This also reduces the setup friction by requiring less manual work on behalf of the installer.
14 lines
408 B
Bash
Executable File
14 lines
408 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# Installs development tooling requirements.
|
|
|
|
printf "Installing Xcode CLI tools...\n"
|
|
xcode-select --install
|
|
|
|
printf "%s\n" "💡 ALT+TAB to view and accept Xcode license window."
|
|
read -p "Have you completed the Xcode CLI tools install (y/n)? " xcode_response
|
|
if [[ "$xcode_response" != "y" ]]; then
|
|
printf "ERROR: Xcode CLI tools must be installed before proceeding.\n"
|
|
exit 1
|
|
fi
|