forked from lix-project/hydra
* hydra: handle case where logfile is empty
This commit is contained in:
parent
b6ad5c3103
commit
88ffadb70e
|
@ -45,10 +45,10 @@ sub view_build : Chained('build') PathPart('') Args(0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
(my $lastBuildStep) = $build->buildsteps->search({},{order_by => "stepnr DESC", rows => 1});
|
(my $lastBuildStep) = $build->buildsteps->search({},{order_by => "stepnr DESC", rows => 1});
|
||||||
if (defined $build->resultInfo && $build->resultInfo->buildstatus == 1 && $lastBuildStep && isValidPath($lastBuildStep->logfile)) {
|
my $path = defined $lastBuildStep ? $lastBuildStep->logfile : "" ;
|
||||||
my $path = $lastBuildStep->logfile;
|
if (defined $build->resultInfo && $build->resultInfo->buildstatus == 1 && !($path eq "") && isValidPath($lastBuildStep->logfile)) {
|
||||||
$c->stash->{logtext} = `tail -n 50 $path`;
|
$c->stash->{logtext} = `tail -n 50 $path`;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue