mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(changelog): remove CR characters in breaking change messages
The GitHub UI might not remove CR characters from commit description forms filled from a Windows browser.
This commit is contained in:
parent
a251233bec
commit
a4a79eaa8c
1 changed files with 2 additions and 0 deletions
|
@ -91,6 +91,8 @@ function parse-commit {
|
|||
if [[ "$body" =~ "BREAKING CHANGE: (.*)" || \
|
||||
"$subject" =~ '^[^ :\)]+\)?!: (.*)$' ]]; then
|
||||
message="${match[1]}"
|
||||
# remove CR characters (might be inserted in GitHub UI commit description form)
|
||||
message="${message//$'\r'/}"
|
||||
# skip next paragraphs (separated by two newlines or more)
|
||||
message="${message%%$'\n\n'*}"
|
||||
# ... and replace newlines with spaces
|
||||
|
|
Loading…
Reference in a new issue