Hydra/18: fixed uninitialized value error when logfile is null
[?]
Apr 19, 2010, 10:25 AM
KSD75RNJGFVVDHSKXPXWZAXPXAG623N3XN4FFLOVCYKF4KBXALNACDependencies
- [2]
BOFOHCPKremoved debug print, added last 50 lines in failure emails - [3]
KA45EBF5* Send email if a build fails. - [4]
QUTWJR7P* Include more info in notification emails. - [*]
7YBYT2LQ
Change contents
- replacement in src/script/hydra_build.pl at line 151
my $logtext = `tail -$loglines $logfile` if -e $logfile;my $logtext = defined $logfile && -e $logfile ? `tail -$loglines $logfile` : "No logfile available.\n";