Skip to content

Commit ee3182f

Browse files
committed
Update sync script
1 parent b4a0af6 commit ee3182f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/sync-with-upstream.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ sync() {
5353
echo "Rebasing $local_branch branch onto $upstream_branch from upstream"
5454
git rebase --onto=$upstream_branch $(get_base_commit)^ $local_branch
5555
if [[ $? -ne 0 ]]; then
56-
echo "There are merge conflicts doing the rebase. Reverting changes"
57-
git rebase --abort
56+
echo "There are merge conflicts doing the rebase."
57+
echo "Please resolve them or abort the rebase."
5858
exit_script "Could not rebase succesfully"
5959
fi
6060
echo "$local_branch sucessfully updated"

0 commit comments

Comments
 (0)