2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-14 17:24:04 +00:00

Revert "fix: resolve filesystem app dependencies (#1450)" (#1452)

This reverts commit f3b55f7785.
This commit is contained in:
Ankush Menat 2023-05-09 21:31:33 +05:30 committed by GitHub
parent f3b55f7785
commit 082692cae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,14 +81,16 @@ 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.on_disk = 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):