From e4744a48fa82c226162351d7598827efa610e0ec Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Fri, 1 Dec 2017 09:14:29 +0100 Subject: Exclude RPMs and output xml files from framework packing Change-Id: Id79c3c54b9bacc10f15c5881492592e69ef3649b Signed-off-by: Jan Gelety --- resources/libraries/python/SetupFramework.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/libraries') diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index 4fb39307f9..500812826a 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -55,8 +55,8 @@ def pack_framework_dir(): tmpfile.close() proc = Popen( - split("tar --sparse --exclude-vcs " - "--exclude=./tmp --exclude=*.deb -zcf {0} .". + split("tar --sparse --exclude-vcs --exclude=output*.xml " + "--exclude=./tmp --exclude=*.deb --exclude=*.rpm -zcf {0} .". format(file_name)), stdout=PIPE, stderr=PIPE) (stdout, stderr) = proc.communicate() -- cgit 1.2.3-korg