Skip to content

Commit

Permalink
gen-changelog: Actually match content on fixes lines
Browse files Browse the repository at this point in the history
  • Loading branch information
iarna authored and zkat committed Aug 22, 2018
1 parent 1d2fa4d commit f86570d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function main () {
} else if (m = line.match(/^Credit: @(.*)/)) {
if (!commit.credit) commit.credit = []
commit.credit.push(m[1])
} else if (m = line.match(/^Fixes: #?(.*?)/)) {
} else if (m = line.match(/^Fixes: #?(.*)/)) {
commit.fixes = m[1]
} else if (m = line.match(/^Reviewed-By: @(.*)/)) {
commit.reviewed = m[1]
Expand Down

0 comments on commit f86570d

Please sign in to comment.