Skip to content

Commit

Permalink
Revert "[TestProxyDownloader] Add support for "aarch64" (#37137)"
Browse files Browse the repository at this point in the history
This reverts commit 7bfe82f.
  • Loading branch information
jairmyree committed Oct 18, 2023
1 parent 6837adc commit 4d765f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private static class PlatformInfo {
// intel Macs are x86_64.
if (arch.contains("amd64") || arch.contains("x86_64")) {
architecture = "x64";
} else if (arch.contains("arm64") || arch.contains("aarch64")) {
} else if (arch.contains("arm64")) {
architecture = "arm64";
} else {
throw new RuntimeException("Unsupported platform " + arch);
Expand Down

0 comments on commit 4d765f6

Please sign in to comment.