downloads-page: ignore signify signatures (#21985)
This commit is contained in:
parent
e9a6e73c54
commit
509e1d7dc7
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue