Skip to content

Commit f3a5bdc

Browse files
committed
add missing )
1 parent a17da38 commit f3a5bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/new-versioning/update-frontmatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const dirsToProcess = ['content', 'translations']
1010
const allFiles = flatten(dirsToProcess.map(dir => {
1111
return walk(path.join(process.cwd(), dir), { includeBasePath: true, directories: false })
1212
.filter(file => !file.endsWith('README.md'))
13-
.filter(file => !(file.endsWith('LICENSE') || file.endsWith('LICENSE-CODE'))
13+
.filter(file => !(file.endsWith('LICENSE') || file.endsWith('LICENSE-CODE')))
1414
// we only want to process frontmatter in content files in translations, so skip data files
1515
// this is very brittle but works well enough for this script
1616
// (note data files are updated in script/new-versioning/update-content.js)

0 commit comments

Comments
 (0)