Files
dotfiles/install
Aaron Gutierrez 0acd4ced88 Have the install script quit on errors
This should stop the vimproc directory being rsync'd when make and
friends are not installed.
2018-02-28 10:54:26 -08:00

13 lines
283 B
Bash
Executable File

#!/bin/bash
set -e
git pull origin master;
git submodule init;
git submodule sync;
git submodule update;
cd .vim/bundle/vimproc.vim && make && cd ../../..
rsync --exclude ".git/" --exclude ".git*" --exclude "install" --exclude "py3status" --exclude "bin/" -avhE --no-perms . ~;