Ignore:
Timestamp:
2013-06-25T14:35:07+12:00 (11 years ago)
Author:
ak19
Message:

I think the reports get generated and uploaded nightly, but they get deleted on nzdl by a tnightly task that's run. The nightly caveat cleanup that runs on nzdl looks for the date format in caveat filenames to have period separators as opposed to hyphens. The former caveat files get preserved overnight.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nightly-tasks/diffcol/trunk/task.pl

    r27701 r27702  
    133133$mon = "0$mon" if ($mon < 10);
    134134$mday = "0$mday" if ($mday < 10);
    135 my $dateid="$year-$mon-$mday"; #my $dateid=($year+1900)."-".($mon+1)."-$mday";
     135my $dateid="$year.$mon.$mday"; #my $dateid=($year+1900)."-".($mon+1)."-$mday";
    136136
    137137print STDERR "Starting test '$dateid'\n";
     
    580580    my $os_entry = $entry;
    581581    $os_entry =~ s@\[email protected]@ if $isWin;
    582     $os_entry = $^O."-diffcol-$os_entry";   
     582    $os_entry = $^O."-diffcol-$os_entry";
    583583   
    584584    # get the absolute path to the original files before copying them over
Note: See TracChangeset for help on using the changeset viewer.