mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
228 B
Bash
Executable File
14 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Checked for installed CLT
|
|
if [[ -e "/Library/Developer/CommandLineTools/usr/bin/git" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
if /usr/bin/xcode-select --install; then
|
|
exit 0
|
|
fi
|
|
|
|
printf "Failed to install CommandLine Tools"
|
|
exit 1
|