From cb4e7614eedfa900c4dc78adf3247d802f2faddd Mon Sep 17 00:00:00 2001 From: "Daniel J. Hofmann" Date: Wed, 19 Aug 2015 20:22:57 +0200 Subject: [PATCH] Actually do the subtree pull instead of just notifying the user --- update_depdendencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update_depdendencies.sh b/update_depdendencies.sh index 078320829..3891d7d8a 100755 --- a/update_depdendencies.sh +++ b/update_depdendencies.sh @@ -16,6 +16,6 @@ read -p "Looks good? (Y/n) " ok if [[ $ok =~ [yY] ]] then - echo git subtree pull -P third_party/libosmium/ $OSMIUM_REPO $OSMIUM_TAG --squash - echo git subtree pull -P third_party/variant/ $VARIANT_REPO $VARIANT_TAG --squash + git subtree pull -P third_party/libosmium/ $OSMIUM_REPO $OSMIUM_TAG --squash + git subtree pull -P third_party/variant/ $VARIANT_REPO $VARIANT_TAG --squash fi