Files
runner-images-PK/images/macos/provision/core/homebrew.sh
T

20 lines
456 B
Bash
Raw Normal View History

#!/bin/bash -e -o pipefail
2020-09-10 14:34:08 +03:00
echo "Installing Homebrew..."
HOMEBREW_INSTALL_URL="https://raw.githubusercontent.com/Homebrew/install/master/install.sh"
/bin/bash -c "$(curl -fsSL ${HOMEBREW_INSTALL_URL})"
echo "Disabling Homebrew analytics..."
2020-09-10 14:34:08 +03:00
brew analytics off
echo "Installing the latest curl..."
2020-09-10 14:34:08 +03:00
brew install curl
echo "Installing wget..."
2020-09-10 14:34:08 +03:00
brew install wget
echo "Installing jq..."
2020-09-10 14:34:08 +03:00
brew install jq
# init brew bundle feature
brew tap Homebrew/bundle