We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c910f2e commit 84bfdc4Copy full SHA for 84bfdc4
vcast_exec.py
@@ -236,9 +236,14 @@ def __init__(self, args):
236
self.cleanup("pclp", "gl-code-quality-report.json")
237
self.cleanup(".", self.mpName + "_aggregate_report.html")
238
self.cleanup(".", self.mpName + "_metrics_report.html")
239
+ self.cleanup(".", "*.log")
240
- def cleanup(self, dirName, fname):
241
- for file in glob.glob(os.path.join(self.xml_data_dir, dirName, fname + "*.*")):
+ def cleanup(self, dirName, fname = ""):
242
+
243
+ if fname == "":
244
+ fname = "*.*"
245
246
+ for file in glob.glob(os.path.join(self.xml_data_dir, dirName, fname)):
247
try:
248
os.remove(file);
249
except:
0 commit comments