Skip to content

Commit c6e02b5

Browse files
authored
feat: recipe bundles now provide recipe info (#61)
1 parent ae1f5f0 commit c6e02b5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

ecsact/private/ecsact_build_recipe.bzl

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,15 @@ def _ecsact_build_recipe_bundle(ctx):
134134
# need curl in PATH due to https://github.com/ecsact-dev/ecsact_cli/issues/115
135135
use_default_shell_env = True,
136136
)
137-
return DefaultInfo(
138-
files = depset([bundle_output_file]),
139-
)
137+
return [
138+
DefaultInfo(
139+
files = depset([bundle_output_file]),
140+
),
141+
EcsactBuildRecipeInfo(
142+
recipe_path = bundle_output_file,
143+
data = [],
144+
),
145+
]
140146

141147
ecsact_build_recipe_bundle = rule(
142148
implementation = _ecsact_build_recipe_bundle,

0 commit comments

Comments
 (0)