From c3e8e3badbf906f281ca47c542ca25467835bda3 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 31 Mar 2017 06:39:24 +0200 Subject: [PATCH] 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". --- mirror-nixos-branch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirror-nixos-branch.pl b/mirror-nixos-branch.pl index 5173e1f..5027855 100755 --- a/mirror-nixos-branch.pl +++ b/mirror-nixos-branch.pl @@ -174,7 +174,7 @@ if ($bucket->head_key("$releasePrefix")) { $html .= "

$title

"; $html .= "

Released on $now from Git commit $rev "; $html .= "via Hydra evaluation $evalId.

"; - $html .= ""; + $html .= "
File nameSizeSHA-512 hash
"; # Upload the release to S3. for my $fn (sort glob("$tmpDir/*")) {
File nameSizeSHA-256 hash