Skip to content

Commit

Permalink
fix(bazel): fix intel detection (#10322)
Browse files Browse the repository at this point in the history
(cherry picked from commit 50e8ba2)
  • Loading branch information
curiositycasualty authored and github-actions[bot] committed Feb 24, 2023
1 parent d39e96c commit 2c6a094
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ def _github_release_impl(ctx):

if os_arch == "aarch64":
os_arch = "arm64"
if os_arch == "x86_64":
os_arch = "amd64"
elif os_arch != "amd64":
fail("Unsupported arch %s" % os_arch)

Expand Down

0 comments on commit 2c6a094

Please sign in to comment.