From c3b756f987ffd8ca981c1e6f23435c74aad36aea Mon Sep 17 00:00:00 2001 From: Minteck <46352972+Minteck@users.noreply.github.com> Date: Sat, 10 Jul 2021 16:03:26 +0200 Subject: Fixes --- signing/sign.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'signing/sign.js') 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)); -- cgit