We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2ec7e1 + a10f234 commit 3506cf7Copy full SHA for 3506cf7
lib/src/main/java/com/diffplug/spotless/rome/Architecture.java
@@ -43,9 +43,6 @@ public static Architecture guess() {
43
if (arch.equals("ppc64le")) {
44
throw new IllegalStateException(msg);
45
}
46
- if (arch.equals("aarch64")) {
47
- throw new IllegalStateException(msg);
48
- }
49
if (arch.equals("s390x")) {
50
51
@@ -55,6 +52,9 @@ public static Architecture guess() {
55
52
if (arch.equals("ppc")) {
56
53
57
54
+ if (arch.equals("aarch64")) {
+ return ARM64;
+ }
58
if (arch.equals("arm")) {
59
if (version.contains("v7")) {
60
0 commit comments