Skip to content

Commit 2711d19

Browse files
committed
recompile
1 parent 3c93d10 commit 2711d19

File tree

320 files changed

+12408
-3609
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

320 files changed

+12408
-3609
lines changed

checkToken.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ const constraints = {
142142
};
143143

144144
function checkToken() {
145+
let errors = 0;
145146
fs.readdirSync(tokensDirectory).forEach(folder => {
146147
fs.readdirSync(`${tokensDirectory}/${folder}`).forEach(file => {
147148
if (
@@ -158,14 +159,15 @@ function checkToken() {
158159
`${errs[key][0]} for ${file} in ${tokensDirectory}/${folder}`
159160
);
160161
});
161-
process.exit(1);
162+
errors += 1;
162163
}
163164
} else {
164165
console.error('Incorrect file name or file extension');
165166
process.exit(1);
166167
}
167168
});
168169
});
170+
if(errors > 0) process.exit(1);
169171
process.exit(0);
170172
}
171173

createTokens.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ async function createToken() {
5656
"social": {
5757
"blog": "",
5858
"chat": "",
59+
"discord": "",
5960
"facebook": "",
6061
"forum": "",
6162
"github": "",

dist/master-file.json

Lines changed: 2139 additions & 1011 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)