fix amd64 misclassification
authorAJ ONeal <aj@therootcompany.com>
Mon, 13 Jul 2020 04:58:19 +0000 (04:58 +0000)
committerAJ ONeal <coolaj86@gmail.com>
Mon, 13 Jul 2020 15:28:49 +0000 (09:28 -0600)
pathman/releases.js

index c4d90d253eb481bb6aae201704fb83172e67cf49..019ca9b1e2d95e66ae5f1cf7b89c5640554dfc03 100644 (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;
   });
 };