remove console logs

This commit is contained in:
MathieuG-P
2022-10-09 20:52:58 +02:00
parent 573da853d7
commit 417e538df6
2 changed files with 1 additions and 3 deletions
@@ -199,11 +199,10 @@ export class BsModsManagerService {
if(!hasIPADir || !hasIPAExe){ return; }
await this.executeBSIPA(version, ["--revert", "-n"]).then(res => console.log("BSIPA", res));
await this.executeBSIPA(version, ["--revert", "-n"]);
const promises = download.hashMd5.map(files => {
const file = files.file.replaceAll("IPA/", "").replaceAll("Data", "Beat Saber_Data");
console.log("DELETE", file);
return this.utilsService.unlinkIfExist(path.join(verionPath, file));
})