Skip to content

Commit 7822d08

Browse files
authored
fix(git-node): followup fix for supported wpt jsons (#855)
1 parent 4eaad65 commit 7822d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/git/wpt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async function main(argv) {
5252
if (fs.existsSync(statusFolder)) {
5353
const jsons = fs.readdirSync(statusFolder);
5454
supported = supported.concat(
55-
jsons.map(item => item.replace('.json', '')));
55+
jsons.map(item => path.basename(item, path.extname(item))));
5656
} else {
5757
cli.warn(`Please create the status JSON files in ${statusFolder}`);
5858
}

0 commit comments

Comments
 (0)