Skip to content

Commit

Permalink
make conflict marker
Browse files Browse the repository at this point in the history
  • Loading branch information
nokotan committed Jul 22, 2024
1 parent 824c2f2 commit 21f35b8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci-scripts/Util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ function apply_to_develop_branch() {
git cherry-pick --allow-empty $1

if [ $? -ne 0 ]; then
err_exit "Git cherry-pick failed!"
warn "conflict detected. need to merge manually."
git stage .
git cherry-pick --continue

if [ $? -ne 0 ]; then
err_exit "Git cherry-pick failed!"
fi
fi

info "### apply_to_develop_branch done"
Expand Down

0 comments on commit 21f35b8

Please sign in to comment.