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 3b8f4f7Copy full SHA for 3b8f4f7
crates/uv-git/src/git.rs
@@ -364,8 +364,8 @@ 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)
368
- .arg(into)
+ .arg(database.repo.path.portable_display().to_string())
+ .arg(into.portable_display().to_string())
369
.exec_with_streaming(&mut silent, &mut silent, true)?;
370
371
let repo = GitRepository::open(into)?;
0 commit comments