Skip to content

Commit

Permalink
Fix target name
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed Oct 22, 2024
1 parent 8ce5301 commit d846f4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py/tools/unpack_bin/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ load("//tools/release:defs.bzl", "multi_arch_rust_binary_release")
alias(
name = "unpack_bin",
actual = select({
"//tools/platforms:macos_aarch64": ":venv_macos_aarch64_build",
"//tools/platforms:macos_x86_64": ":venv_macos_x86_64_build",
"//tools/platforms:linux_aarch64": ":venv_linux_aarch64_build",
"//tools/platforms:linux_x86_64": ":venv_linux_x86_64_build",
"//tools/platforms:macos_aarch64": ":unpack_macos_aarch64_build",
"//tools/platforms:macos_x86_64": ":unpack_macos_x86_64_build",
"//tools/platforms:linux_aarch64": ":unpack_linux_aarch64_build",
"//tools/platforms:linux_x86_64": ":unpack_linux_x86_64_build",
}),
tags = ["manual"],
visibility = ["//visibility:public"],
Expand Down

0 comments on commit d846f4b

Please sign in to comment.