1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00

Download brewfiles and bundle.

This commit is contained in:
Dan Barber 2014-05-05 12:34:39 +01:00
parent 4a903fcf60
commit aee2a54a2d

View File

@ -1,4 +1,19 @@
#!/bin/sh
#ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
echo " ************* DONE! ************"
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
# We want to be in the user home directory.
cd ~
# Get Brewfiles.
echo 'Downloading Brewfiles...'
curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/Brewfile > ~/Brewfile
curl -s https://raw.githubusercontent.com/danbee/mac-setup/master/Caskfile > ~/Caskfile
# Install brew bundles
echo 'Installing...'
brew bundle
brew bundle Caskfile
echo 'Done!'