We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cargo doc --open --target TARGET
1 parent c205132 commit 60afff0Copy full SHA for 60afff0
src/cargo/ops/cargo_doc.rs
@@ -53,7 +53,10 @@ pub fn doc(ws: &Workspace,
53
// Don't bother locking here as if this is getting deleted there's
54
// nothing we can do about it and otherwise if it's getting overwritten
55
// then that's also ok!
56
- let target_dir = ws.target_dir();
+ let mut target_dir = ws.target_dir();
57
+ if let Some(triple) = options.compile_opts.target {
58
+ target_dir.push(Path::new(triple).file_stem().unwrap());
59
+ }
60
let path = target_dir.join("doc").join(&name).join("index.html");
61
let path = path.into_path_unlocked();
62
if fs::metadata(&path).is_ok() {
0 commit comments