Skip to content

Commit 241d709

Browse files
committed
fix: treat plugin as string not path
1 parent cc2654b commit 241d709

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MODULE.bazel.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ecsact/private/ecsact_build_recipe.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _ecsact_build_recipe(ctx):
2525
for codegen_plugin in ctx.attr.codegen_plugins:
2626
info = codegen_plugin[EcsactCodegenPluginInfo]
2727
sources.append({
28-
"codegen": [info.plugin.path],
28+
"codegen": [info.plugin],
2929
"outdir": ctx.attr.codegen_plugins[codegen_plugin],
3030
})
3131
recipe_data.append(info.plugin)

0 commit comments

Comments
 (0)