dotfiles/install
Josh Sherman c3e6de560d [install] adds submodule init
Also updated README and dumped some shit from the old setup script
2016-11-17 15:50:23 -06:00

13 lines
266 B
Bash
Executable file

#!/usr/bin/env bash
DOTFILES_REPO=https://github.com/joshtronic/dotfiles
DOTFILES_DIR=~/.dotfiles
rm -rf $DOTFILES_DIR
mkdir $DOTFILES_DIR
git clone $DOTFILES_REPO $DOTFILES_DIR
cd $DOTFILES_DIR
git pull origin master
git submodule update --init --recursive
make