Update ci-generateTranslations.js

This commit is contained in:
Joel Calado 2021-03-27 19:07:46 +00:00 committed by GitHub
parent 6284b38694
commit f43f79a6cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ function downloadTranslation(filename, trans = {}) {
console.log("Saving translation: " + filename);
const textDoc = JSON.stringify(trans, null, 2);
fs.writeFile(`..\\translations\\${filename}.json`, textDoc, function (err) {
fs.writeFile(`translations\\${filename}.json`, textDoc, function (err) {
if (err) {
return console.log(err);
}