rage-keygen: Print recipient to terminal after writing identity file

This ensures that if we cannot write the identity file (for example, if
the file already exists), we don't output a recipient that cannot be
used (because its identity was lost).
This commit is contained in:
Jack Grigg 2024-01-07 18:59:41 +00:00
parent 4ec6fb6312
commit 95c2570c99

View file

@ -76,10 +76,6 @@ fn main() -> Result<(), error::Error> {
let pk = sk.to_public();
(|| {
if !output.is_terminal() {
eprintln!("{}: {}", fl!("tty-pubkey"), pk);
}
writeln!(
output,
"# {}: {}",
@ -87,7 +83,13 @@ fn main() -> Result<(), error::Error> {
chrono::Local::now().to_rfc3339_opts(chrono::SecondsFormat::Secs, true)
)?;
writeln!(output, "# {}: {}", fl!("identity-file-pubkey"), pk)?;
writeln!(output, "{}", sk.to_string().expose_secret())
writeln!(output, "{}", sk.to_string().expose_secret())?;
if !output.is_terminal() {
eprintln!("{}: {}", fl!("tty-pubkey"), pk);
}
Ok(())
})()
.map_err(error::Error::FailedToWriteOutput)
}