Remove 'toc' from output files, this will be handled by data-ingress

This commit is contained in:
2026-01-03 23:11:43 +00:00
parent 1969e90394
commit 36243c7457

View File

@@ -41,7 +41,6 @@ function sortAndMergeYAMLFiles() {
seenCodes.add(item.code); seenCodes.add(item.code);
outputString += ` - code: "${item.code}"\n`; outputString += ` - code: "${item.code}"\n`;
outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\n`; outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\n`;
outputString += ` toc: "${item.toc || "gw"}"\n`;
} }
}); });