Skip to content

Commit 22f9cff

Browse files
authored
Auto merge of #2780 - Boddlnagg:patch-1, r=alexcrichton
Fix `cargo doc --open` on Windows This fixes #2446. Note that I have not built cargo with this change, but I have tested the functionality in isolation (on Windows 10). As to the issue itself, I don't know why the previous version didn't work, but `start` is redundant when `cmd /C` is used.
2 parents b5479d9 + b9a4ef1 commit 22f9cff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cargo/ops/cargo_doc.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ fn open_docs(path: &Path) -> Result<&'static str, Vec<&'static str>> {
9999

100100
#[cfg(target_os = "windows")]
101101
fn open_docs(path: &Path) -> Result<&'static str, Vec<&'static str>> {
102-
match Command::new("cmd").arg("/C").arg("start").arg("").arg(path).status() {
103-
Ok(_) => return Ok("cmd /C start"),
104-
Err(_) => return Err(vec!["cmd /C start"])
102+
match Command::new("cmd").arg("/C").arg(path).status() {
103+
Ok(_) => return Ok("cmd /C"),
104+
Err(_) => return Err(vec!["cmd /C"])
105105
};
106106
}
107107

0 commit comments

Comments
 (0)