From 0acd4ced88992095d439a8a380e77e3eef418784 Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Wed, 28 Feb 2018 10:54:26 -0800 Subject: [PATCH] Have the install script quit on errors This should stop the vimproc directory being rsync'd when make and friends are not installed. --- install | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install b/install index 49579a4..706b0a6 100755 --- a/install +++ b/install @@ -1,4 +1,7 @@ #!/bin/bash + +set -e + git pull origin master; git submodule init; git submodule sync;