mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-19 03:56:16 +00:00
fix(ppc64le): sort by specificity: ppc64le comes BEFORE ppc64
This commit is contained in:
@@ -75,6 +75,8 @@ function getArch(ua) {
|
||||
return 'armv7l';
|
||||
} else if (/arm6|armv6/i.test(ua)) {
|
||||
return 'armv6l';
|
||||
} else if (/ppc64le/i.test(ua)) {
|
||||
return 'ppc64le';
|
||||
} else if (/ppc64/i.test(ua)) {
|
||||
return 'ppc64';
|
||||
} else if (/mips64/i.test(ua)) {
|
||||
|
||||
Reference in New Issue
Block a user