fix(zoxide): remove incorrect arch detection

This commit is contained in:
AJ ONeal
2023-11-24 12:47:07 -07:00
parent 9a3cfbb573
commit 6b25145795

View File

@@ -6,11 +6,6 @@ var repo = 'zoxide';
module.exports = function (request) {
return github(request, owner, repo).then(function (all) {
all.releases.forEach(function (rel) {
if (/-arm-/.test(rel.download)) {
rel.arch = 'armv6l';
}
});
return all;
});
};