Fix build-languages on fresh install.

This commit is contained in:
John Livingston
2023-07-14 13:39:34 +02:00
parent 5932033dcb
commit a82e5eb390

View File

@ -113,7 +113,7 @@ class BuildLanguages {
async ensureDestinationDir () {
if (!fs.existsSync(this.destinationDir)) {
await fs.promises.mkdir(this.destinationDir)
await fs.promises.mkdir(this.destinationDir, { recursive: true })
}
}