dependency parsing broken

This commit is contained in:
2026-05-30 20:35:02 -04:00
parent fcc0aa618e
commit 73d1ee1a47
3 changed files with 522 additions and 447 deletions

View File

@@ -99,7 +99,7 @@ function parseFioFormat(
.map((t) => t.trim())
.filter((t) => t)
.map((t) => `0${t}`);
// Each target depends on the source
for (const toId of targetIds) {
if (!dependencies[toId]) dependencies[toId] = [];
@@ -117,7 +117,7 @@ function parseFioFormat(
.map((t) => t.trim())
.filter((t) => t)
.map((t) => `0${t}`);
if (!dependencies[taskIdPadded]) dependencies[taskIdPadded] = [];
dependencies[taskIdPadded].push(...depIds);
}