fix: register apps when dir is missing (#6)

zio/stable
patak 2022-11-15 22:22:15 +01:00 committed by GitHub
parent 47968146a8
commit 8abcd6f16e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -43,4 +43,7 @@ for (const server of KNOWN_SERVERS) {
}
}
if (!fs.existsSync('public'))
await fs.mkdir('public')
await fs.writeJSON(filename, registeredApps, { spaces: 2, EOL: '\n' })