Merge pull request #10777 from gavindsouza/installed-apps-fix
fix: allow unversioned apps
This commit is contained in:
commit
07d47f19be
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ class InstalledApplications(Document):
|
|||
for app in frappe.utils.get_installed_apps_info():
|
||||
self.append("installed_applications", {
|
||||
"app_name": app.get("app_name"),
|
||||
"app_version": app.get("version"),
|
||||
"git_branch": app.get("branch")
|
||||
"app_version": app.get("version") or "UNVERSIONED",
|
||||
"git_branch": app.get("branch") or "UNVERSIONED"
|
||||
})
|
||||
self.save()
|
||||
Loading…
Add table
Reference in a new issue