Skip to content

Commit 921c358

Browse files
committed
migrate metadata run methods
1 parent 261078c commit 921c358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ fn workspace_members(build: &Build) -> Vec<Package> {
8888
.arg("--no-deps")
8989
.arg("--manifest-path")
9090
.arg(build.src.join(manifest_path));
91-
let metadata_output = cargo.run_always().run_capture_stdout(build).stdout();
91+
let metadata_output = cargo.run_always().run_capture_stdout(build.context()).stdout();
9292
let Output { packages, .. } = t!(serde_json::from_str(&metadata_output));
9393
packages
9494
};

0 commit comments

Comments
 (0)