There was an error while loading. Please reload this page.
1 parent becf79a commit 14e660bCopy full SHA for 14e660b
1 file changed
scripts/sync-qwen-release.sh
@@ -75,6 +75,11 @@ if [[ "$tag" != "$baseline_tag" ]]; then
75
"refs/tags/$tag:refs/tags/$tag"
76
fi
77
78
+if [[ "$tag" == "$baseline_tag" ]]; then
79
+ echo "Qwen Code $tag is already synced."
80
+ exit 0
81
+fi
82
+
83
if [[ "$mode" == create ]]; then
84
branch="cx/sync-qwen-$tag"
85
worktree="$repo_root/.worktrees/openwork-qwen-$tag"
@@ -108,11 +113,6 @@ if [[ -n "$(git -C "$repo_root" status --porcelain)" ]]; then
108
113
exit 1
109
114
110
115
111
-if [[ "$tag" == "$baseline_tag" ]]; then
112
- echo "Qwen Code $tag is already synced."
- exit 0
-fi
-
116
git -C "$repo_root" update-ref "$state_ref" HEAD
117
if ! git -C "$repo_root" merge-base HEAD "$tag" >/dev/null 2>&1; then
118
git -C "$repo_root" merge --strategy=ours --no-ff \
0 commit comments