Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const UpdateModsFolder = new Juke.Target({
executes: () => {
try {
// Nuking mods folder before re-adding them in order to stay up to date
if(fs.existsSync("mods/")) fs.rmdirSync("mods/", { recursive: true })
if(fs.existsSync("mods/")) fs.rmSync("mods/", { recursive: true })
fs.mkdirSync("mods/", { recursive: true })
cpMods("mods/")
} catch (error) {
Expand Down