diff --git a/apps/remix-ide/src/app/files/dgitProvider.js b/apps/remix-ide/src/app/files/dgitProvider.js index 3fb5703b8d..921e579c75 100644 --- a/apps/remix-ide/src/app/files/dgitProvider.js +++ b/apps/remix-ide/src/app/files/dgitProvider.js @@ -118,18 +118,15 @@ class DGitProvider extends Plugin { }) }) - console.log('to remove', toRemove) for (const module of toRemove) { const path = (await this.getGitConfig(module.path)).dir if (await window.remixFileSystem.exists(path)) { const stat = await window.remixFileSystem.stat(path) try { if (stat.isDirectory()) { - console.log('removing', path) await window.remixFileSystem.unlink((await this.getGitConfig(module.path)).dir) } } catch (e) { - console.log(e) // do nothing } }