diff --git a/pathman/releases.js b/pathman/releases.js index c4d90d2..019ca9b 100644 --- a/pathman/releases.js +++ b/pathman/releases.js @@ -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; }); };