Arch-based install

This commit is contained in:
Anthony Cicchetti 2022-06-02 09:12:41 -04:00
parent 2b49549581
commit c328a57f27

View file

@ -27,9 +27,13 @@ elif [[ $(uname) == "Linux" ]]; then
elif [[ $(uname) == "Darwin" ]]; then
if [[ ! $(command -v brew) ]]; then
# Yeah, raw brew install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
if [[ $(arch) == 'arm64' ]]; then
/opt/homebrew/bin/brew install ansible
else
/usr/local/bin/brew install ansible
fi
/usr/local/bin/brew install ansible
fi
ANSIBLE_PYTHON_INTERPRETER="$(command -v python)"