Use TargetTriple::from_path in rustdoc

This commit is contained in:
bjorn3 2021-05-16 10:25:08 +02:00
parent 69b352ef77
commit 8260b8325c

View File

@ -565,7 +565,7 @@ fn println_condition(condition: Condition) {
let target =
matches.opt_str("target").map_or(TargetTriple::from_triple(host_triple()), |target| {
if target.ends_with(".json") {
TargetTriple::TargetPath(PathBuf::from(target))
TargetTriple::from_path(Path::new(&target))
} else {
TargetTriple::TargetTriple(target)
}