Skip to content

Commit 85d9e67

Browse files
committed
update to create full path needed
1 parent eec8447 commit 85d9e67

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

vcast_exec.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,8 @@ def exportRgw(self):
498498

499499
def runExec(self):
500500

501+
print("Building {} with {} {}".format(self.FullMP,self.build_execute, self.incremental)
502+
501503
self.manageWait.exec_manage_command ("--status")
502504
self.manageWait.exec_manage_command ("--force --release-locks")
503505
self.manageWait.exec_manage_command ("--config VCAST_CUSTOM_REPORT_FORMAT=HTML")
@@ -533,6 +535,7 @@ def runExec(self):
533535
callList.append(s)
534536

535537
callStr = " ".join(callList)
538+
print("Build/Execute in parallel using {}".format(" ".join(callList)))
536539
parallel_build_execute.parallel_build_execute(callStr)
537540

538541
else:
@@ -542,6 +545,8 @@ def runExec(self):
542545
jstr = ""
543546
cmd = "--" + self.build_execute + " " + self.useCBT + self.level_option + self.env_option + " " + jstr + " " + output
544547

548+
print("Build/Execute in using manage commadn with options: {}".format(cmd))
549+
545550
build_log = self.manageWait.exec_manage_command (cmd)
546551
with open(self.build_log_name,"wb") as fd:
547552
fd.write(build_log.encode(self.encFmt, "replace"))

0 commit comments

Comments
 (0)