Fix track remote branch

Cette révision appartient à :
2023-01-31 15:33:21 -05:00
Parent 03db94e20d
révision 97f6e0a927

Voir le fichier

@@ -632,10 +632,20 @@ fromSource() {
if [[ $RELEASE == "snapshot" ]]; then
gitworktreedir="$SRCDIR/$profile/$RELEASE"
git -C "$GITSRCDIR" worktree add -fd "$gitworktreedir" master
git -C "$GITSRCDIR" \
worktree add \
--force \
--detach \
"$gitworktreedir" \
"master"
else
gitworktreedir="$SRCDIR/$profile/$RELEASE"
git -C "$GITSRCDIR" worktree add -fd "$gitworktreedir" "openwrt-${RELEASE%.*}"
git -C "$GITSRCDIR" \
worktree add \
--force \
--detach \
"$gitworktreedir" \
"origin/openwrt-${RELEASE%.*}"
fi
seed_file="$gitworktreedir/.config"