Updated links to point to new GitHub repo name

This commit is contained in:
TheEssem 2019-12-16 15:32:47 -06:00
parent 903f5eebf0
commit 3a02efef70
5 changed files with 13 additions and 12 deletions

View file

@ -34,7 +34,7 @@ module.exports = async (output) => {
categories.soundboard.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
}
}
fs.writeFile(output, pug.renderFile("./assets/pages/help.pug", { commands: categories }), () => {
fs.writeFile(output, pug.renderFile("./assets/pages/help.pug", { commands: categories, dev: process.env.NODE_ENV === "development" ? true : false }), () => {
logger.log("The help docs have been generated.");
});
};