Skip to content

Commit 60afff0

Browse files
committed
Make cargo doc --open --target TARGET work as expected.
1 parent c205132 commit 60afff0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/cargo/ops/cargo_doc.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ pub fn doc(ws: &Workspace,
5353
// Don't bother locking here as if this is getting deleted there's
5454
// nothing we can do about it and otherwise if it's getting overwritten
5555
// then that's also ok!
56-
let target_dir = ws.target_dir();
56+
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+
}
5760
let path = target_dir.join("doc").join(&name).join("index.html");
5861
let path = path.into_path_unlocked();
5962
if fs::metadata(&path).is_ok() {

0 commit comments

Comments
 (0)