From ed3d82be5134dfb958ef692e127e48825ae06393 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 18 Jun 2015 18:24:35 +0200 Subject: [PATCH] [FIX] runbot: do not install hw_* and theme_* modules --- runbot/runbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runbot/runbot.py b/runbot/runbot.py index e76dc988..b01a190d 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -688,7 +688,8 @@ class runbot_build(osv.osv): else: l = glob.glob(build.server('addons', '*', '__init__.py')) modules = set(os.path.basename(os.path.dirname(i)) for i in l) - modules = modules - set(['auth_ldap', 'document_ftp', 'hw_escpos', 'hw_proxy', 'hw_scanner', 'base_gengo', 'website_gengo', 'website_instantclick']) + modules = modules - set(['auth_ldap', 'document_ftp', 'base_gengo', 'website_gengo', 'website_instantclick']) + modules = set(m for m in modules if not m.startswith(('hw_', 'theme_'))) modules = ",".join(list(modules)) # commandline