From 9b84264fa5debbe833c9bf21539c709fd44f4b21 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 3 Feb 2026 11:20:53 +0530 Subject: [PATCH] fix: Don't bother resolving installed app (#36610) If only app name is specified and it already exists on bench, don't bother resolving using github APIs which can be flaky sometimes. --- frappe/installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/installer.py b/frappe/installer.py index f0827d5315..978598385b 100644 --- a/frappe/installer.py +++ b/frappe/installer.py @@ -260,6 +260,8 @@ def parse_app_name(name: str) -> str: else: _repo = name.rsplit("/", 2)[2] repo = _repo.split(".", 1)[0] + elif name in frappe.get_all_apps(): + return name else: _, repo, _ = fetch_details_from_tag(name) return repo