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

fix: Revert usage of app_name for repo name

This commit is contained in:
Gavin D'souza 2023-05-31 13:59:34 +05:30
parent e80daf8c3e
commit f7fbee99d6
No known key found for this signature in database
GPG Key ID: 3A7BF4D4340DE6F7

View File

@ -268,7 +268,7 @@ class App(AppMeta):
except IndexError:
return []
try:
required_deps = get_required_deps(self.org, self.app_name, self.tag or self.branch)
required_deps = get_required_deps(self.org, self.repo, self.tag or self.branch)
return required_apps_from_hooks(required_deps)
except Exception:
return []