Skip to content

Commit

Permalink
fix(bazel): fix intel detection
Browse files Browse the repository at this point in the history
  • Loading branch information
curiositycasualty authored and dndx committed Feb 21, 2023
1 parent 9626ab5 commit b30985a
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 b30985a

Please sign in to comment.