diff --git a/crates/radicle-cli/src/commands/cob.rs b/crates/radicle-cli/src/commands/cob.rs index ef6dd9dc..4db3a8fa 100644 --- a/crates/radicle-cli/src/commands/cob.rs +++ b/crates/radicle-cli/src/commands/cob.rs @@ -156,14 +156,7 @@ pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> { .. } => { let repo = storage.repository(repo)?; - if let Err(e) = show(objects, &repo, type_name.into(), &profile) { - if let Some(err) = e.downcast_ref::() { - if err.kind() == std::io::ErrorKind::BrokenPipe { - return Ok(()); - } - } - return Err(e); - } + show(objects, &repo, type_name.into(), &profile)?; } Update(args::Update { repo,