forked from colonelpanic/dotfiles
14 lines
265 B
Bash
Executable File
14 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd `dirname $BASH_SOURCE` && source bootstrapping.sh
|
|
case `uname` in
|
|
'Darwin')
|
|
source resources/osx.sh
|
|
source resources/brew.sh
|
|
;;
|
|
'Linux')
|
|
source resources/apt-get.sh
|
|
;;
|
|
esac
|
|
|
|
source bootstrap.sh
|