diff --git a/extra/check-lang-json.js b/extra/check-lang-json.js index 6555f902e..dfda34892 100644 --- a/extra/check-lang-json.js +++ b/extra/check-lang-json.js @@ -2,7 +2,7 @@ const fs = require("fs"); -let path = "../src/lang"; +let path = "./src/lang"; // list directories in the lang directory let jsonFileList = fs.readdirSync(path); @@ -23,3 +23,5 @@ for (let jsonFile of jsonFileList) { process.exit(1); } } + +console.log("All lang json files are formatted correctly.");