Arch-based install
This commit is contained in:
parent
2b49549581
commit
c328a57f27
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
fi
|
||||
|
||||
ANSIBLE_PYTHON_INTERPRETER="$(command -v python)"
|
||||
|
|
Loading…
Add table
Reference in a new issue