fix amd64 misclassification

This commit is contained in:
AJ ONeal
2020-07-13 04:58:19 +00:00
committed by AJ ONeal
parent 26fc4cbdd8
commit fd4ed8c14b

View File

@@ -7,12 +7,6 @@ var baseurl = 'https://git.rootprojects.org';
module.exports = function (request) {
return github(request, owner, repo, baseurl).then(function (all) {
all.releases.forEach(function (rel) {
// TODO name uploads with arch, duh
if (!rel.arch) {
rel.arch = 'amd64';
}
});
return all;
});
};