From fd4ed8c14bd2b5cdeac2046f6025baee7374f352 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 13 Jul 2020 04:58:19 +0000 Subject: [PATCH] fix amd64 misclassification --- pathman/releases.js | 6 ------ 1 file changed, 6 deletions(-) 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; }); }; -- 2.25.1