Skip to content

Commit

Permalink
[TestProxyDownloader] Add support for "aarch64" (#37137)
Browse files Browse the repository at this point in the history
(cherry picked from commit d8fee5f)
  • Loading branch information
mikeharder authored and jairmyree committed Oct 18, 2023
1 parent 74b8f00 commit 7bfe82f
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")) {
} else if (arch.contains("arm64") || arch.contains("aarch64")) {
architecture = "arm64";
} else {
throw new RuntimeException("Unsupported platform " + arch);
Expand Down

0 comments on commit 7bfe82f

Please sign in to comment.