diff options
author | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-10 16:03:26 +0200 |
---|---|---|
committer | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-10 16:03:26 +0200 |
commit | c3b756f987ffd8ca981c1e6f23435c74aad36aea (patch) | |
tree | be6b4923dd4a3bbfc147e29421873028c39c9af3 /signing/sign.js | |
parent | b9e7ec33542bb8041857eb997d17b29ffeae40c8 (diff) | |
download | kartik-client-c3b756f987ffd8ca981c1e6f23435c74aad36aea.tar.gz kartik-client-c3b756f987ffd8ca981c1e6f23435c74aad36aea.tar.bz2 kartik-client-c3b756f987ffd8ca981c1e6f23435c74aad36aea.zip |
Fixes
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)); |