scripts/update.sh: fix checkout of correct base commit after fetching
This commit is contained in:
parent
17e45badd9
commit
16648ce242
@ -16,5 +16,8 @@ for module in $GLUON_MODULES; do
|
||||
git init
|
||||
git config commit.gpgsign false
|
||||
|
||||
git branch -f base $commit 2>/dev/null || git fetch -f $repo $branch:base
|
||||
if ! git branch -f base $commit 2>/dev/null; then
|
||||
git fetch $repo $branch
|
||||
git branch -f base $commit 2>/dev/null
|
||||
fi
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user