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 1c1a2f4 commit 55a5d46Copy full SHA for 55a5d46
vcast_exec.py
@@ -378,7 +378,10 @@ def sendToBitBucket(self):
378
+ glob.glob(os.path.join(html_dir, "*.ccs")) \
379
+ glob.glob(os.path.join(html_dir, "*.png")):
380
dest = os.path.join("reports/html",html)
381
- os.makedirs(os.path.dirname(dest))
+ dest_dir = os.path.dirname(dest)
382
+ if not os.path.isdir(dest_dir):
383
+ os.makedirs(os.path.dirname(dest))
384
+
385
try:
386
shutil.copyfile(html, dest)
387
print("Copying {} --> {}".format(html,dest))
0 commit comments