diff --git a/scripts/make-full-list.js b/scripts/make-full-list.js index 4e4faa2..1197da1 100644 --- a/scripts/make-full-list.js +++ b/scripts/make-full-list.js @@ -5,6 +5,7 @@ async function main() { let list = await readdir('.'); list = list.sort((x, y) => x.toLowerCase() < y.toLowerCase() ? -1 : 1); for (let f of list) { + if (f == '_full_list.txt') { continue; } let c = await readFile(f, 'utf8'); let l = c.split('\n')[0]; res += l;