11 lines
251 B
Bash
Executable file
11 lines
251 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Check if Xcode CLI tools are installed. Install if not.
|
|
if [ "$(xcode-select --version)" == "" ]; then
|
|
sudo xcode-select --install
|
|
|
|
sudo xcodebuild -license accept
|
|
|
|
echo "Press [ENTER] when install has finished"
|
|
read
|
|
fi
|