From 59adcccab3c7dd151a386e30f6f542b85a4417b0 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 1 Jan 2014 18:30:55 +0100 Subject: [PATCH] Fix update.sh --- scripts/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update.sh b/scripts/update.sh index f840b457..c8e98187 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -13,6 +13,6 @@ for module in $GLUON_MODULES; do cd "$1"/$module git init - git checkout $commit 2>/dev/null || fetch $repo + git checkout $commit 2>/dev/null || git fetch $repo git checkout -B base $commit done