Skip to content

Commit 60732f6

Browse files
avrabeclaude
andcommitted
fix: rename embedded file_ops binary target to match external reference
The go_binary target in tools/file_ops/BUILD.bazel was still named "file_ops_external" from the previous phase. This prevented the target //tools/file_ops:file_ops from being found during the build. Rename the target to "file_ops" to match all references in: - toolchains/BUILD.bazel - toolchains/file_ops_toolchain.bzl - test/file_ops_integration/file_ops_test.bzl - MODULE.bazel 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent de0de08 commit 60732f6

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

tools/file_ops/BUILD.bazel

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ wasm_precompile(
2121

2222
# Wrapper binary that executes external WASM component with local AOT
2323
go_binary(
24-
name = "file_ops_external",
24+
name = "file_ops",
2525
srcs = ["main.go"],
2626
data = [
2727
":file_ops_aot", # Locally compiled AOT - guaranteed compatible!
@@ -33,13 +33,6 @@ go_binary(
3333
deps = ["@rules_go//go/runfiles"],
3434
)
3535

36-
# Export for easy access in toolchains
37-
alias(
38-
name = "file_ops_external_binary",
39-
actual = ":file_ops_external",
40-
visibility = ["//visibility:public"],
41-
)
42-
4336
# Export WIT interface for toolchain use
4437
# This defines the file operations interface contract
4538
filegroup(

0 commit comments

Comments
 (0)