diff --git a/radicle-cli/src/commands/id.rs b/radicle-cli/src/commands/id.rs index fe8b358b..617a5544 100644 --- a/radicle-cli/src/commands/id.rs +++ b/radicle-cli/src/commands/id.rs @@ -470,9 +470,11 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> { proposal }; if proposal == current.doc { - term::print(term::format::italic( - "Nothing to do. The document is up to date. See `rad inspect --identity`.", - )); + if !options.quiet { + term::print(term::format::italic( + "Nothing to do. The document is up to date. See `rad inspect --identity`.", + )); + } return Ok(()); } let revision = update(title, description, proposal, &mut identity, &signer)?;