projects
/
webi-installers
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26fc4cb
)
fix amd64 misclassification
author
AJ ONeal
<aj@therootcompany.com>
Mon, 13 Jul 2020 04:58:19 +0000
(
04:58
+0000)
committer
AJ ONeal
<coolaj86@gmail.com>
Mon, 13 Jul 2020 15:28:49 +0000
(09:28 -0600)
pathman/releases.js
patch
|
blob
|
history
diff --git
a/pathman/releases.js
b/pathman/releases.js
index c4d90d253eb481bb6aae201704fb83172e67cf49..019ca9b1e2d95e66ae5f1cf7b89c5640554dfc03 100644
(file)
--- 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;
});
};