Created
May 15, 2020 19:38
-
-
Save adamstrickland/c01f04eeaa760a4ab83d2b78e87e8334 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
brew bundle --file=- <<EOF | |
tap "homebrew/cask" | |
brew "mas" | |
mas "Xcode", id: 497799835 | |
brew "ruby-install" | |
cask "docker" | |
EOF | |
fancy_echo "Cleaning up old Homebrew formulae ..." | |
brew cleanup | |
brew cask cleanup | |
if [ -r "$HOME/.rcrc" ]; then | |
fancy_echo "Updating dotfiles ..." | |
rcup | |
fi | |
asdf plugin install ruby | |
asdf install ruby 2.7.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment