fix(ppc64le): sort by specificity: ppc64le comes BEFORE ppc64

This commit is contained in:
AJ ONeal
2023-10-11 22:05:22 +00:00
parent 456bb61896
commit 489c27ea01
+2
View File
@@ -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)) {