Skip to content

Commit

Permalink
Fix cvs short if there is patch or modify in perform html.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Jun 21, 2024
1 parent 2a4b09c commit c10dc9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions perform-html.pl
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,9 @@ sub parse_result_files {
$cvsdate =~ s,^/,,;
my ($short, $cvsshort, $repshort) = ($date, $cvsdate, $repeat);
$short =~ s/T.+Z$//;
$cvsshort =~ s/T.+Z$//;
$cvsshort =~ s/patch-(.*)\.\d+$/$1/;
$cvsshort =~ s/modify-(.*)\.\d+$/$1/;
$cvsshort =~ s,T[^/]+Z,,;
$cvsshort =~ s,patch-([^/]*)\.\d+,$1,;
$cvsshort =~ s,modify-([^/]*)\.\d+,$1,;
$cvsshort =~ s,/, ,g;
$repshort =~ s/^btrace-(.*)\.\d+$/$1/ if $repeat;
my $reldate = "$date";
Expand Down

0 comments on commit c10dc9d

Please sign in to comment.