From 21b5d14d37709b762d0edbc9da6b7d1aa913cf27 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 11 Sep 2015 00:00:16 -0700 Subject: [PATCH] Fix up install script to actually install things. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index b4e710a..76d7a89 100755 --- a/install.sh +++ b/install.sh @@ -58,14 +58,14 @@ function install_basic_dir { while read file ; do TARGET="${2}/${file#${SRCDIR}/}" mkdir -p `dirname "${TARGET}"` - echo ln -s -f "${file}" "${TARGET}" + ln -s -f "${file}" "${TARGET}" done } function postinstall { # Install Vundle plugins if [ -d $HOME/.vim/bundle/Vundle.vim ] ; then - vim +VundleInstall +qall + vim -s +VundleInstall +qall fi }