signing: remove redundant "exit status" from SSH backend error

Follows up 550f44b7c1 "gpg: drop redundant "exit status" from error message."
This commit is contained in:
Yuya Nishihara 2024-05-14 09:26:17 +09:00
parent a61f91b8cf
commit c17a75624e

View file

@ -33,7 +33,7 @@ pub struct SshBackend {
#[derive(Debug, Error)]
pub enum SshError {
#[error("SSH sign failed with exit status {exit_status}:\n{stderr}")]
#[error("SSH sign failed with {exit_status}:\n{stderr}")]
Command {
exit_status: ExitStatus,
stderr: String,