Added scripts for OS X

This commit is contained in:
Michele Cereda
2022-09-22 11:52:07 +02:00
parent ff5252f4f2
commit 068c4320bb
2 changed files with 12 additions and 0 deletions

6
scripts/homebrew.install.bash Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# sources:
# - http://rapidprogrammer.com/how-to-install-homebrew-with-ansible
yes | bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

6
scripts/osx.xcode-install.zsh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/zsh
if ! [[ -d "$(xcode-select -p)" ]];
then
xcode-select --install
fi