Skip to content

Commit

Permalink
chore(migration): fix newline encoding in PR description (#11207)
Browse files Browse the repository at this point in the history
  • Loading branch information
vchudnov-g authored May 31, 2023
1 parent d479dbe commit fe22c44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ git push -u origin "${BRANCH}" --force
# create pull request
if which gh > /dev/null
then
gh pr create --title "chore(migration): Migrate code from ${SOURCE_REPO} into ${TARGET_PATH}" --body "See #${ISSUE_NUMBER}. $(echo '\n\nThis PR should be merged with a merge-commit, not a squash-commit, in order to preserve the git history.')"
gh pr create --title "chore(migration): Migrate code from ${SOURCE_REPO} into ${TARGET_PATH}" --body "$(echo "See #${ISSUE_NUMBER}. \n\nThis PR should be merged with a merge-commit, not a squash-commit, in order to preserve the git history.")"
else
hub pull-request -m "migrate code from ${SOURCE_REPO}"
fi
Expand Down

0 comments on commit fe22c44

Please sign in to comment.