Some random bugfixes

This commit is contained in:
Radon Rosborough 2021-04-23 20:33:57 -07:00
parent 46b2bcf4bd
commit d521eed1ce
2 changed files with 2 additions and 1 deletions

View File

@ -733,7 +733,7 @@ async function main() {
passed.forEach((_, { lang }) => {
langsValidated[lang] = true;
});
failed.forEach(({ lang }) => {
failed.forEach((_, { lang }) => {
langsValidated[lang] = false;
});
for (const [lang, validated] of Object.entries(langsValidated)) {

View File

@ -640,6 +640,7 @@ async function main() {
if (program.args.length === 0) {
program.help({ error: true });
}
await runCommand("make all-scripts");
await executeDepGraph({
depgraph,
manual,