We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdea8b0 commit ab0b3c0Copy full SHA for ab0b3c0
ecsact/private/ecsact_build_recipe.bzl
@@ -119,11 +119,15 @@ def _ecsact_build_recipe_bundle(ctx):
119
120
executable = ecsact_toolchain.target_tool if ecsact_toolchain.target_tool != None else ecsact_toolchain.target_tool_path
121
122
+ recipes_data = []
123
+ for recipe in ctx.attr.recipes:
124
+ recipes_data.extend(recipe[EcsactBuildRecipeInfo].data)
125
+
126
ctx.actions.run(
127
mnemonic = "EcsactRecipeBundle",
128
progress_message = "Bundling Ecsact Build Recipe %{output}",
129
outputs = [bundle_output_file],
- inputs = ctx.files.recipes,
130
+ inputs = ctx.files.recipes + recipes_data,
131
executable = executable,
132
arguments = [args],
133
toolchain = Label("//ecsact:toolchain_type"),
0 commit comments