From 5086483c0ba5f71f8fe5b734a90821dd729f69a8 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 5 May 2014 11:02:40 -0400 Subject: [PATCH] Tweaked the update script to properly handle changing git submodule source URLs and removed "successfully" from the line saying the update script completed since it never actually tests to see if it was successful. --- update | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update b/update index 5beee63..83173ed 100755 --- a/update +++ b/update @@ -17,6 +17,7 @@ fi echo "Updating darkcloud-vimconfig..." git pull origin +git submodule sync echo -e "\nUpdating plugin submodules..." git submodule update --init --recursive @@ -58,5 +59,5 @@ echo "Generating updated helpdocs for installed plugins..." [[ `type -P vim` ]] && vim -c "Helptags|qa!" &>/dev/null 2>&1 echo -echo "Successfully completed!" +echo "Update Complete!" exit 0