mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 07:14:38 +00:00
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:
parent
a61f91b8cf
commit
c17a75624e
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue