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 9d6f044 commit 188178dCopy full SHA for 188178d
vcast_exec.py
@@ -414,7 +414,7 @@ def sendToBitBucket(self):
414
print("$BITBUCKET_CLONE_DIR not set")
415
basePath = "."
416
417
- html_dirs = [basePath, "html_reports", "rebuild_reports"]
+ html_dirs = [basePath, self.html_base_dir, "rebuild_reports"]
418
419
for html_dir in html_dirs:
420
for html in (
@@ -433,7 +433,7 @@ def sendToBitBucket(self):
433
try:
434
if os.path.abspath(html) != os.path.abspath(dest):
435
shutil.copy2(html, dest)
436
- if verbose: print("Saving file here: {}".format(dest))
+ if self.verbose: print("Saving file here: {}".format(dest))
437
except Exception as e:
438
print("Error copying {} --> {}\n{}".format(html, dest, e))
439
0 commit comments