2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 08:16:28 +00:00

fix: removed unnecessary requests while removing apps

This commit is contained in:
Aradhya 2022-05-04 18:08:13 +05:30
parent d4ae743d10
commit 49900ce74b

View File

@ -123,7 +123,8 @@ class Bench(Base, Validator):
from bench.app import App
self.validate_app_uninstall(app)
self.apps.remove(App(app, bench=self, to_clone=False))
path_to_app = os.path.join(self.name, "apps", app)
self.apps.remove(App(path_to_app, bench=self, to_clone=False))
self.apps.sync()
# self.build() - removed because it seems unnecessary
self.reload()