M
Mav
Thanks again.
I probably don't use die to since I need to get the Failed
....
close BUILDLOG;
close $proc;
#Check Build Result
if ($? == 0) {
$buildResult = "Passed";
}
else {
$buildResult = "Failed";
}
Do you think that is a better way?
I probably don't use die to since I need to get the Failed
....
close BUILDLOG;
close $proc;
#Check Build Result
if ($? == 0) {
$buildResult = "Passed";
}
else {
$buildResult = "Failed";
}
Do you think that is a better way?