This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # --- 1. PRE-FLIGHT: Apple Developer Tools --- | |
| if ! xcode-select -p &>/dev/null; then | |
| echo "Apple Command Line Tools not found. Starting installation..." | |
| xcode-select --install | |
| echo "--------------------------------------------------------" | |
| echo "A macOS dialog has appeared. Please click 'Install'." | |
| echo "Wait for the installation to finish, THEN press ENTER here." |