13 lines
266 B
Bash
Executable file
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
|
|
|