downloads: check that release names begin with geth

This commit is contained in:
Anton Evangelatov 2018-07-20 11:17:31 +02:00
parent 1f8484818b
commit 5899313e37

View file

@ -332,6 +332,12 @@
signatures[name] = true;
continue;
}
// Skip any blobs that do not start with "geth"
if (!name.startsWith("geth")) {
continue;
}
// Otherwise add an entry to one of the release tables
var parts = name.split("-");
var date = parts[parts.length-1].split(".")[0];