scripts/update.sh: fix checkout of correct base commit after fetching
This commit is contained in:
parent
98557891da
commit
0eac102971
@ -16,5 +16,8 @@ for module in $GLUON_MODULES; do
|
|||||||
git init
|
git init
|
||||||
git config commit.gpgsign false
|
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
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user