Skip to content

Commit 8166873

Browse files
committed
fix: correct toolchain type reference in wasm_tools_actions.bzl
Fixes CI failure due to toolchain type mismatch between wasm_tools_component_toolchain_type and wasm_tools_toolchain_type in the action helper.
1 parent a701d0c commit 8166873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bazel_helpers/wasm_tools_actions.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def wasm_tools_action(ctx, operation, **kwargs):
2424
"""
2525

2626
# Get the WASM tools component from toolchain
27-
wasm_tools_toolchain = ctx.toolchains["@rules_wasm_component//toolchains:wasm_tools_component_toolchain_type"]
27+
wasm_tools_toolchain = ctx.toolchains["@rules_wasm_component//toolchains:wasm_tools_toolchain_type"]
2828
wasm_tools_info = wasm_tools_toolchain.wasm_tools_info
2929
wasm_tools_component_target = wasm_tools_info.wasm_tools_component
3030

0 commit comments

Comments
 (0)