2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 23:48:24 +00:00

fix: resolve filesystem app dependencies (#1450)

* fix: resolve private app dependencies

* fix: removed additional check and moved self.on_disk to previous check.
This commit is contained in:
Alok Singh 2023-05-04 17:28:34 +05:30 committed by GitHub
parent 934b2677c8
commit f3b55f7785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,17 +81,15 @@ class AppMeta:
if not self.is_repo:
self.repo = self.app_name = self.name
return
# fetch meta from installed apps
if self.bench and os.path.exists(os.path.join(self.bench.name, "apps", self.name)):
self.mount_path = os.path.join(self.bench.name, "apps", self.name)
self.from_apps = True
self._setup_details_from_mounted_disk()
# fetch meta for repo on mounted disk
elif os.path.exists(self.mount_path):
self.on_disk = True
self._setup_details_from_mounted_disk()
# fetch meta for repo from remote git server - traditional get-app url
elif is_git_url(self.name):
self.is_url = True