Some random bugfixes
This commit is contained in:
parent
46b2bcf4bd
commit
d521eed1ce
|
@ -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)) {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue