Add the security directory into the packaging

bzr revid: stephane@tinyerp.com-20081113103957-1op6exlhnfxkmftn
This commit is contained in:
Stephane Wirtel 2008-11-13 11:39:57 +01:00
parent 09fd27f685
commit 26ec801a60
1 changed files with 5 additions and 1 deletions

View File

@ -125,7 +125,11 @@ def data_files():
glob.glob(opj(add_path, 'report', '*rml')) +
glob.glob(opj(add_path, 'report', '*sxw')) +
glob.glob(opj(add_path, 'report', '*xsl'))
)
),
( opj(addon_path, 'security'),
glob.glob(opj(add_path, 'security', '*csv')) +
glob.glob(opj(add_path, 'security', '*xml'))
),
]
files.extend(pathfiles)
files.append(('.', [('bin/import_xml.rng')]))