Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2018-08-22 22:55:22 +0300
committerKat Marchán <kzm@zkat.tech>2018-08-23 02:12:37 +0300
commitf86570da1f223ac714509f2610ee9f185f1e19ef (patch)
treefec74bfcfeff5043ba124f5d63f1beed6509ef53 /scripts
parent1d2fa4dddcab8facfee92096cc24b299387f3182 (diff)
gen-changelog: Actually match content on fixes lines
Diffstat (limited to 'scripts')
-rw-r--r--scripts/changelog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/changelog.js b/scripts/changelog.js
index 6abefa4fb..a921d1ff1 100644
--- a/scripts/changelog.js
+++ b/scripts/changelog.js
@@ -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]