Skip to content

Commit b708aad

Browse files
authoredApr 24, 2023
Rollup merge of #110744 - weihanglo:cargo-credential-install, r=ehuss
bootstrap: update paths cargo-credential crate This should be done in #110653 but forgot. Fixes #110742 ## How to verify this patch Run `./x.py build cargo`. Previously it would fail with ```console error: manifest path `/projects/rust/src/tools/cargo/crates/credential/cargo-credential-1password/Cargo.toml` does not exist ```
2 parents 4d3ab3d + f5e535c commit b708aad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/bootstrap/tool.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -573,18 +573,18 @@ impl Step for Cargo {
573573
if self.target.contains("windows") {
574574
build_cred(
575575
"cargo-credential-wincred",
576-
"src/tools/cargo/crates/credential/cargo-credential-wincred",
576+
"src/tools/cargo/credential/cargo-credential-wincred",
577577
);
578578
}
579579
if self.target.contains("apple-darwin") {
580580
build_cred(
581581
"cargo-credential-macos-keychain",
582-
"src/tools/cargo/crates/credential/cargo-credential-macos-keychain",
582+
"src/tools/cargo/credential/cargo-credential-macos-keychain",
583583
);
584584
}
585585
build_cred(
586586
"cargo-credential-1password",
587-
"src/tools/cargo/crates/credential/cargo-credential-1password",
587+
"src/tools/cargo/credential/cargo-credential-1password",
588588
);
589589
cargo_bin_path
590590
}

0 commit comments

Comments
 (0)
Please sign in to comment.