Skip to content

Commit 7ef1b50

Browse files
authored
Update windows.rs
Escape fix
1 parent e0942b7 commit 7ef1b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/self_update/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ pub fn do_add_to_programs() -> Result<()> {
302302
}
303303

304304
let mut path = utils::cargo_home()?;
305-
path.push("bin\rustup.exe");
305+
path.push("bin\\rustup.exe");
306306
let mut uninstall_cmd = OsString::from("\"");
307307
uninstall_cmd.push(path);
308308
uninstall_cmd.push("\" self uninstall");

0 commit comments

Comments
 (0)