Skip to content

Commit

Permalink
Add disabling option
Browse files Browse the repository at this point in the history
  • Loading branch information
strawmelonjuice committed Oct 19, 2023
1 parent 61da0ce commit a97ac76
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ fs.readdirSync("./plugins", { withFileTypes: true })
.filter((dirent) => dirent.isDirectory())
.map((dirent) => dirent.name)
.forEach((pluginfolder) => {
if (pluginfolder.endsWith("-disabled")) return;
function linklog(displaylinked) {
displaylinkedfat = chalk.bold(displaylinked);
tell.log(
Expand Down

0 comments on commit a97ac76

Please sign in to comment.