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
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC

View File

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