Make install script runable

This commit is contained in:
2017-10-09 21:27:09 -07:00
parent 176e93967c
commit 0b39715363

9
install Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
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.sh" --exclude "py3status" --exclude "bin/" -avhE --no-perms . ~;