We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e250c4 commit 3a8b6cbCopy full SHA for 3a8b6cb
crates/uv-git/src/git.rs
@@ -364,7 +364,7 @@ impl GitCheckout {
364
// Make sure to pass the local file path and not a file://... url. If given a url,
365
// Git treats the repository as a remote origin and gets confused because we don't
366
// have a HEAD checked out.
367
- .arg(&database.repo.path)
+ .arg(format!("\"{}\"", database.repo.path.portable_display()))
368
.arg(into)
369
.exec_with_streaming(&mut silent, &mut silent, true)?;
370
0 commit comments