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 7522418b552de369fca07d4fac9f4fbcae773736
parent 10e7b94c304d215ad4a1ff326233098ab182d0b1
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 })