Skip to content

Commit 8e9de4a

Browse files
committed
prettify-status.pl: exclude the Branch column
We do not need it, because it is always master anyway.
1 parent 7876743 commit 8e9de4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

prettify-status.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ($$)
4949
push @ahead, "<td class=\"first\"></td>\n" .
5050
"<td><a href=\"$link\">$groupId:$artifactId</a></td>\n" .
5151
"<td><a href=\"$link/compare/$tag...$branch\">$commitCount</a></td>\n" .
52-
"<td><a href=\"$link/tree/$branch\">$branch</a></td>\n" .
52+
# "<td><a href=\"$link/tree/$branch\">$branch</a></td>\n" .
5353
"<td><a href=\"$link/tree/$tag\">$version</a></td>\n";
5454
}
5555
else {
@@ -96,7 +96,7 @@ ($$)
9696
print "<th>&nbsp;</th>\n";
9797
print "<th>Project</th>\n";
9898
print "<th>Commits</th>\n";
99-
print "<th>Branch</th>\n";
99+
# print "<th>Branch</th>\n";
100100
print "<th>Latest version</th>\n";
101101
print "</tr>\n";
102102
my $rowIndex = 0;

0 commit comments

Comments
 (0)