update_manager: report updater name for git_repo types

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2025-01-27 14:15:07 -05:00
parent d4d2074466
commit 52781fbd9e

View File

@ -152,6 +152,7 @@ class GitDeploy(AppDeploy):
def get_update_status(self) -> Dict[str, Any]:
status = super().get_update_status()
status.update(self.repo.get_repo_status())
status["name"] = self.name
return status
def get_persistent_data(self) -> Dict[str, Any]: