mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00
[FIX] runbot: do not install hw_* and theme_* modules
This commit is contained in:
parent
c3e2a6f72d
commit
ed3d82be51
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user