aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2024-07-23 17:08:32 +0200
committer0neGal <mail@0negal.com>2024-07-23 17:09:12 +0200
commit5ddec759a2a71c553cfffbab02033fdb37470a2d (patch)
tree8b362ba722b5e83f47f2d69e04ffb35edd0a948e /scripts
parent877d0e5d50712fb0a3ee915d3bbf6991c39f8b7c (diff)
downloadViper-5ddec759a2a71c553cfffbab02033fdb37470a2d.tar.gz
Viper-5ddec759a2a71c553cfffbab02033fdb37470a2d.zip
added "Check localizations" action
Diffstat (limited to 'scripts')
-rw-r--r--scripts/langs.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/langs.js b/scripts/langs.js
index 23b9924..b2f5287 100644
--- a/scripts/langs.js
+++ b/scripts/langs.js
@@ -361,10 +361,18 @@ let check = (logging = true) => {
// run `check()` if `--check()` is set
if (args["check"]) {
- let problems = check();
+ let has_problems = false;
+
+ // check localizations, and set `has_problems` depending on whether
+ // any localization files have problems
+ Object.values(check()).forEach((item) => {
+ if (item.length) {
+ has_problems = true;
+ }
+ });
// exit with the correct exit code
- if (problems.length) {
+ if (has_problems) {
process.exit(1);
} else {
process.exit();