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 b4c81ed commit d9d8fdfCopy full SHA for d9d8fdf
stage0/defs.bzl
@@ -175,7 +175,7 @@ def _stage0_executable_impl(ctx: AnalysisContext) -> list[Provider]:
175
],
176
category = "overlay",
177
)
178
- command = overlay.project("bin").project(ctx.label.name)
+ command = overlay.project("bin").project(ctx.label.name).with_associated_artifacts([overlay])
179
else:
180
command = cmd_args(
181
ctx.attrs._wrapper[RunInfo],
stage1/defs.bzl
@@ -32,7 +32,7 @@ def _rust_tool_impl(ctx: AnalysisContext) -> list[Provider]:
32
},
33
34
35
- tool = dist.project(bin_path)
+ tool = dist.project(bin_path).with_associated_artifacts([dist])
36
37
return [
38
DefaultInfo(
0 commit comments