chore: prune old update files, fix update dialog #17

Merged
HorizonCode merged 6 commits from dev into master 2024-04-23 07:08:24 +00:00
Showing only changes of commit 8a8856772e - Show all commits

View File

@ -277,6 +277,10 @@ async function downloadEZPPLauncherUpdateFiles(osuPath, updateFiles) {
for (const files of await fs.promises.readdir(pruneFolder)) { for (const files of await fs.promises.readdir(pruneFolder)) {
const filePath = path.join(pruneFolder, files); const filePath = path.join(pruneFolder, files);
if (!updateFiles.some(file => path.join(osuPath, ...file.folder.split("/"), file.name) === filePath)) { if (!updateFiles.some(file => path.join(osuPath, ...file.folder.split("/"), file.name) === filePath)) {
//NOTE: check if the file is in the main osuPath folder, then dont delete.
if (path.dirname(filePath) == "osu!")
continue;
await fs.promises.rm(filePath, { recursive: true, force: true }); await fs.promises.rm(filePath, { recursive: true, force: true });
} }
} }