downloads-page: ignore signify signatures (#21985)

pull/22004/head
Martin Holst Swende 4 years ago committed by GitHub
parent e9a6e73c54
commit 509e1d7dc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      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];

Loading…
Cancel
Save