From ff09e25ea554baf6e1726d82a80961a177091b0d Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sun, 30 Sep 2018 10:34:17 -0600 Subject: [PATCH] Added XCode install tip. Helpful for first-time installers not familar with XCode. Also reduces confusion with license window which always seems to appear behind current window. --- bin/install_dev_tools | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/install_dev_tools b/bin/install_dev_tools index ade9667..5f34627 100755 --- a/bin/install_dev_tools +++ b/bin/install_dev_tools @@ -6,6 +6,7 @@ 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"