Exclude RPMs and output xml files from framework packing
[csit.git] / resources / libraries / python / SetupFramework.py
index 4fb3930..5008128 100644 (file)
@@ -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()