Fix path in generateSeries script

This commit is contained in:
Pieter Vander Vennet 2023-01-09 21:05:24 +01:00
parent 1a05e0c9a1
commit 2929b02dc5

View file

@ -242,7 +242,7 @@ class GenerateSeries extends Script {
} while (true) } while (true)
const allFiles = readdirSync(targetDir).filter((p) => p.endsWith(".json")) const allFiles = readdirSync(targetDir).filter((p) => p.endsWith(".json"))
writeFileSync(targetDir + "file-overview.json", JSON.stringify(allFiles)) writeFileSync(targetDir + "/file-overview.json", JSON.stringify(allFiles))
} }
private generateCenterPoints( private generateCenterPoints(