Skip to content

Commit

Permalink
recompile
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Oct 7, 2020
1 parent 3c93d10 commit 2711d19
Show file tree
Hide file tree
Showing 320 changed files with 12,408 additions and 3,609 deletions.
4 changes: 3 additions & 1 deletion checkToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const constraints = {
};

function checkToken() {
let errors = 0;
fs.readdirSync(tokensDirectory).forEach(folder => {
fs.readdirSync(`${tokensDirectory}/${folder}`).forEach(file => {
if (
Expand All @@ -158,14 +159,15 @@ function checkToken() {
`${errs[key][0]} for ${file} in ${tokensDirectory}/${folder}`
);
});
process.exit(1);
errors += 1;
}
} else {
console.error('Incorrect file name or file extension');
process.exit(1);
}
});
});
if(errors > 0) process.exit(1);
process.exit(0);
}

Expand Down
1 change: 1 addition & 0 deletions createTokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ async function createToken() {
"social": {
"blog": "",
"chat": "",
"discord": "",
"facebook": "",
"forum": "",
"github": "",
Expand Down
3,150 changes: 2,139 additions & 1,011 deletions dist/master-file.json

Large diffs are not rendered by default.

Loading

0 comments on commit 2711d19

Please sign in to comment.