From 1c19bf95b8080e9f58639da5011c64a6fa7ee23b Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Fri, 9 May 2014 11:11:43 +0530 Subject: [PATCH] do not rebuild sitemap on add to installed app --- frappe/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/cli.py b/frappe/cli.py index f58e557938..4a1994026e 100755 --- a/frappe/cli.py +++ b/frappe/cli.py @@ -308,7 +308,7 @@ def add_to_installed_apps(*apps): all_apps = frappe.get_all_apps(with_frappe=True) for each in apps: if each in all_apps: - add_to_installed_apps(each) + add_to_installed_apps(each, rebuild_sitemap=False) frappe.destroy() @cmd