forked from the-distro/channel-scripts
Fix the displayed hash name (SHA-512 -> SHA-256)
The HTML pages for each channel are showing the SHA-256 hash of each file but the table header actually referred to it as an "SHA-512 hash".
This commit is contained in:
parent
1c07d6dd08
commit
c3e8e3badb
|
@ -174,7 +174,7 @@ if ($bucket->head_key("$releasePrefix")) {
|
|||
$html .= "<body><h1>$title</h1>";
|
||||
$html .= "<p>Released on $now from <a href='$githubLink'>Git commit <tt>$rev</tt></a> ";
|
||||
$html .= "via <a href='$evalUrl'>Hydra evaluation $evalId</a>.</p>";
|
||||
$html .= "<table><thead><tr><th>File name</th><th>Size</th><th>SHA-512 hash</th></tr></thead><tbody>";
|
||||
$html .= "<table><thead><tr><th>File name</th><th>Size</th><th>SHA-256 hash</th></tr></thead><tbody>";
|
||||
|
||||
# Upload the release to S3.
|
||||
for my $fn (sort glob("$tmpDir/*")) {
|
||||
|
|
Loading…
Reference in a new issue