dotfiles/web_start.sh

32 lines
606 B
Bash
Raw Normal View History

2013-03-31 19:31:41 -06:00
#!/bin/bash
function debian() {
hash apt-get &>/dev/null || (echo 'apt-get is missing.' && exit)
sudo apt-get -y install build-essential
sudo apt-get -y install git
}
function osx() {
hash gcc &>/dev/null
if [ $? -ne 0 ]
then
echo "gcc not found."
exit
fi
hash brew &>/dev/null && echo "brew found" || ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
2013-03-31 19:31:41 -06:00
brew update
brew install git
}
case `uname` in
'Darwin')
osx
;;
'Linux')
debian
;;
esac
git clone git@github.com:IvanMalison/dotfiles.git
cd dotfiles
2014-08-25 21:31:11 -06:00
./setup.sh -e