Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle: Allow all references to be included in sigrefs
✗ CI failure Defelo committed 3 months ago
commit c9f45636a4fe9cd28d7ae0cc1ca58eca6190eaf1
parent 02318f199c6f29a2eede1f282e1f9b99927d27ec
1 failed (1 total) View logs
1 file changed +1 -11
modified crates/radicle/src/storage/git.rs
@@ -752,17 +752,7 @@ impl ReadRepository for Repository {
            let oid = e.resolve()?.target().ok_or(Error::InvalidRef)?;
            let (_, category, _, _) = refname.non_empty_components();

-
            use git::fmt::{component, name};
-

-
            if [
-
                name::HEADS,
-
                name::TAGS,
-
                name::NOTES,
-
                &component!("rad"),
-
                &component!("cobs"),
-
            ]
-
            .contains(&category.as_ref())
-
            {
+
            if category != git::fmt::component!("tmp") {
                refs.insert(refname.into(), oid.into());
            }
        }