Skip to content

Commit e16bfdf

Browse files
gregmagolanjbedard
authored andcommitted
fix: when bootstrapping plugins build with --remote_download_outputs=toplevel (#7472)
This is needed if build without the bytes is on. Same as #7471 but for the plugin bootstrap. --- ### Changes are visible to end-users: no ### Test plan - Covered by existing test cases GitOrigin-RevId: b77cc4ffd668268f09bf1261777125570d3fb891
1 parent 848653c commit e16bfdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/plugin/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (c *clientFactory) New(aspectplugin types.PluginConfig, streams ioutils.Str
8585
Stderr: &stderr,
8686
}
8787

88-
err := bzl.RunCommand(buildStreams, nil, "build", aspectplugin.From)
88+
err := bzl.RunCommand(buildStreams, nil, "build", "--remote_download_outputs=toplevel", aspectplugin.From)
8989
if err != nil {
9090
var exitErr *aspecterrors.ExitError
9191
if errors.As(err, &exitErr) {

0 commit comments

Comments
 (0)