From 509e1d7dc76419b86eb209b5ebf1c2232ace48d6 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 9 Dec 2020 19:44:45 +0100 Subject: [PATCH] downloads-page: ignore signify signatures (#21985) --- downloads.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/downloads.html b/downloads.html index aa87347deb..92b45c1647 100644 --- a/downloads.html +++ b/downloads.html @@ -293,6 +293,11 @@ js: signatures[name] = true; continue; } + if (name.endsWith(".sig")) { // signify signature + // TODO account for these, for now ignore them + continue; + } + // Otherwise add an entry to one of the release tables var parts = name.split("-"); var date = parts[parts.length-1].split(".")[0];