fix(tools): ignore license file in challenge audit (#52717)

This commit is contained in:
Naomi Carrigan
2023-12-22 16:04:15 -08:00
committed by GitHub
parent 44f2dab99e
commit 6efcfbbf34

View File

@@ -100,6 +100,9 @@ void (async () => {
join(englishCurriculumDirectory, englishSuperblock)
);
for (const englishBlock of englishBlocks) {
if (englishBlock.endsWith('.txt')) {
continue;
}
const englishChallenges = await readdir(
join(englishCurriculumDirectory, englishSuperblock, englishBlock)
);