[install] adds script to clone repo and run make
Pretty aggressive, no sanity checks. Unsure how I feel about it relying on `git` but I guess it has to to handle the submodules?
This commit is contained in:
parent
ac1a65b260
commit
677f03597a
1 changed files with 9 additions and 0 deletions
9
install
Executable file
9
install
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/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
|
||||
make -C $DOTFILES
|
Loading…
Add table
Add a link
Reference in a new issue