Update merge script to remove entries with empty stops arrays
All checks were successful
Generate Release / validate_and_release (push) Successful in 23s
All checks were successful
Generate Release / validate_and_release (push) Successful in 23s
This commit is contained in:
parent
d7c0e0fb02
commit
521761a620
@ -36,8 +36,10 @@ function sortAndMergeYAMLFiles() {
|
||||
// Construct the output string
|
||||
let outputString = "pis:\n";
|
||||
mergedData.forEach(item => {
|
||||
if (item.stops.length > 0) {
|
||||
outputString += ` - code: "${item.code}"\n`;
|
||||
outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\n`;
|
||||
}
|
||||
});
|
||||
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user