Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
cli: fix error formatting
Merged fintohaps opened 8 months ago

Missed using format! to actually emit the error when the sync fails.

1 file changed +1 -1 ed5b2659 01bed73a
modified crates/radicle-cli/src/node.rs
@@ -260,7 +260,7 @@ where
            Ok(Some(result))
        }
        Err(err) => {
-
            spinner.error("Sync failed: {err}");
+
            spinner.error(format!("Sync failed: {err}"));
            Err(err.into())
        }
    }