mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
7 lines
80 B
Bash
Executable File
7 lines
80 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
if ! [[ -d "$(xcode-select -p)" ]];
|
|
then
|
|
xcode-select --install
|
|
fi
|