diff --git a/src/lib.rs b/src/lib.rs index 4387530..f4c9cf0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,7 +59,7 @@ pub fn that+Sized>(path: T) -> io::Result { #[cfg(target_os = "windows")] pub fn that+Sized>(path: T) -> io::Result { let mut cmd = Command::new("cmd"); - cmd.arg("/C").arg("start"); + cmd.arg("/C").arg("start").arg(""); if let Some(s) = path.as_ref().to_str() { cmd.arg(s.replace("&", "^&")); } else {