scripts/update.sh: don't hide errors because of invalid commit IDs

This commit is contained in:
Matthias Schiffer 2017-02-12 08:01:48 +01:00
parent b4ccb1fa95
commit 2e6d457ec1
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ for module in $GLUON_MODULES; do
if ! git branch -f base "$commit" 2>/dev/null; then
git fetch "$repo" "$branch"
git branch -f base "$commit" 2>/dev/null
git branch -f base "$commit"
fi
done