From 0d463564cdc4ec5c358dde9b7bbfb5d857c8f970 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 11 Feb 2014 09:13:58 -0600 Subject: [PATCH] Make the git update work on older, pre 1.7.3, git versions. Took out the "--recurse-submodules" option from git pull (and rearrange the commands accordingly) so that repeated updates work on older git version, i.e. versions older than 1.7.3 which is when the option was introduced. --- xsl_reports/build_results_all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xsl_reports/build_results_all.sh b/xsl_reports/build_results_all.sh index 0b8e30f..a571764 100755 --- a/xsl_reports/build_results_all.sh +++ b/xsl_reports/build_results_all.sh @@ -22,9 +22,9 @@ build_setup() if [ -d boost-reports ]; then cd boost-reports/boost_root git remote set-branches --add origin develop - git pull --recurse-submodules - git submodule update --init + git pull git checkout develop + git submodule update --init else mkdir boost-reports cd boost-reports