Update fetch-prompts.mjs

This commit is contained in:
DirkSchlossmacher 2023-06-06 10:34:52 +02:00 committed by GitHub
parent 74eb266bab
commit 336d88b5dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ async function fetchEN() {
}
async function main() {
Promise.all([fetchCN(), fetchEN()])
Promise.all([fetchEN()])
.then(([en]) => {
fs.writeFile(FILE, JSON.stringify({en }));
})