diff options
Diffstat (limited to 'signing/sign.js')
-rw-r--r-- | signing/sign.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/signing/sign.js b/signing/sign.js index 2e1c23d..bb8d534 100644 --- a/signing/sign.js +++ b/signing/sign.js @@ -9,7 +9,7 @@ global.sdb = { function scan(start) { rt = fs.readdirSync(start); for (file of rt) { - if (file !== ".git" && file !== "build" && file !== "signatures.json" && file !== "staging" && file !== "node_modules" && !file.endsWith(".staging") && !file.endsWith(".old") && file !== "_translate") { + if (file !== ".git" && file !== "build" && file !== "signatures.json" && file !== "staging" && file !== "node_modules" && !file.endsWith(".staging") && !file.endsWith(".old") && file !== "_translate" && file !== "macos") { if (fs.lstatSync(start + "/" + file).isDirectory()) { scan(start + "/" + file); } else { @@ -30,4 +30,4 @@ function scan(start) { } scan(".."); -fs.writeFileSync("../bin/signatures.json", JSON.stringify(sdb));
\ No newline at end of file +fs.writeFileSync("../bin/signatures.json", JSON.stringify(sdb)); |