mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +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
|