We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b85f7 commit ba3c294Copy full SHA for ba3c294
apps/tools/src/updateTitle.ts
@@ -7,7 +7,7 @@ import { XMLParser } from 'fast-xml-parser';
7
const parser = new XMLParser();
8
9
for (const a of await fsP.readdir(path.join(process.argv[2]))) {
10
- if (!a.startsWith('A')) continue;
+ if (!a.startsWith('A') && !a.startsWith('K')) continue;
11
const base = path.join(process.argv[2], a);
12
if (!fs.existsSync(path.join(base, 'title'))) continue;
13
for (const dir of await fsP.readdir(path.join(base, 'title'))) {
0 commit comments