downloads-page: ignore signify signatures (#21985)

This commit is contained in:
Martin Holst Swende 2020-12-09 19:44:45 +01:00 committed by GitHub
parent e9a6e73c54
commit 509e1d7dc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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];