fix: actually get all reports
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Cat /dev/Nulo 2022-11-25 20:06:32 -03:00
parent 7a6e83f035
commit a852fa7998

View file

@ -115,7 +115,7 @@ async function recurseDirectory(reports, path) {
else {
if (!file.name.endsWith(".html")) continue;
const content = await readFile(filePath, "utf-8");
reports[path] = await processFile(content);
reports[filePath] = await processFile(content);
}
}
}