0
0
Fork 0

Remove log statements

This commit is contained in:
Tyler-A 2020-04-23 20:30:50 -06:00
parent fb54a12238
commit b3c124284e

View file

@ -36,8 +36,8 @@ export const ADD_TO_DOCS = (msg: msg_meta, won: bracket_result) => {
${addition_indicator}`; ${addition_indicator}`;
let docs: string = fs.readFileSync(`./docs/index.html`, `utf8`); let docs: string = fs.readFileSync(`./docs/index.html`, `utf8`);
console.log(docs)
docs = docs.replace(`<!-- BOTTOM -->`, `${docstring_to_add}`); docs = docs.replace(`<!-- BOTTOM -->`, `${docstring_to_add}`);
console.log(docs);
fs.writeFileSync(`./docs/index.html`, `${docs}`); fs.writeFileSync(`./docs/index.html`, `${docs}`);
} }