Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle/storage: Fix temporary path generation
✗ CI failure Lorenz Leutgeb committed 6 months ago
commit d8ab40777de7c08d893b1ee0b97711b49e24a124
parent 013da67aa1cd72776ecae5643fe5f055154a334d
2 failed (2 total) View logs
1 file changed +1 -1
modified 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 })