mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-20 04:26:25 +00:00
ref: improve readability of arch sort
This commit is contained in:
+6
-5
@@ -95,13 +95,14 @@ function normalize(all) {
|
||||
supported.oses[rel.os] = true;
|
||||
|
||||
if (!rel.arch) {
|
||||
arches.some(function (regKey) {
|
||||
var arch = (rel.name || rel.download).match(archMap[regKey]) && regKey;
|
||||
if (arch) {
|
||||
for (let arch of arches) {
|
||||
let name = rel.name || rel.download;
|
||||
let isArch = name.match(archMap[arch]);
|
||||
if (isArch) {
|
||||
rel.arch = arch;
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (!rel.arch) {
|
||||
if ('macos' === rel.os) {
|
||||
|
||||
Reference in New Issue
Block a user