diff --git a/scripts/update-authors.js b/scripts/update-authors.js index 4ec0e03137..6e5d214f30 100755 --- a/scripts/update-authors.js +++ b/scripts/update-authors.js @@ -47,7 +47,7 @@ rl.on('line', line => { const match = line.match(authorRe); if (!match) return; - let {author, email} = match.groups; + const {author, email} = match.groups; if (seen.has(email) || excludeEmails.includes(email)) { return;