diff --git a/web_start.sh b/web_start.sh index ba9e00cb..843bca32 100755 --- a/web_start.sh +++ b/web_start.sh @@ -25,15 +25,19 @@ function osx() { brew install git } +function go() { + git clone git@github.com:IvanMalison/dotfiles.git + cd dotfiles + ./setup.sh -e +} + case `uname` in 'Darwin') osx + go ;; 'Linux') debian + go ;; esac - -git clone git@github.com:IvanMalison/dotfiles.git -cd dotfiles -./setup.sh -e