Last active
June 28, 2020 03:50
-
-
Save fedesg/10aa35744485ceb4f4fa2bb6080b26ed to your computer and use it in GitHub Desktop.
install my brew staff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
PACKAGES="ansible git hugo" | |
CASK_PACKAGES="google-chrome visual-studio-code docker spotify dropbox iterm2 google-backup-and-sync skype" | |
echo "## Install Homebrew ##" | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
brew update | |
echo "## Install Package ##" | |
brew install $PACKAGES | |
echo "## Install Cask Package ##" | |
brew cask install $CASK_PACKAGES | |
brew upgrade | |
brew cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment