diff --git a/crates/radicle/src/storage/git/temp.rs b/crates/radicle/src/storage/git/temp.rs index d5e9798c..494b18db 100644 --- a/crates/radicle/src/storage/git/temp.rs +++ b/crates/radicle/src/storage/git/temp.rs @@ -34,7 +34,7 @@ impl TempRepository { .collect(); let path = root .as_ref() - .join(format!("{rid}.{random}")) + .join(format!("{}.{random}", rid.canonical())) .with_extension(Self::EXT); let repo = Repository::create(&path, rid, info)?; Ok(Self { repo, path })