From e5ffc36f0cfe297674ff9735e54535aa4534474e Mon Sep 17 00:00:00 2001 From: Zykino Date: Wed, 12 Jul 2023 00:46:13 +0200 Subject: [PATCH] Improve summary error message --- src/errors.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/errors.rs b/src/errors.rs index f6f9b5a..acc6525 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -36,9 +36,7 @@ impl From> for Status { pub enum Error { // #[error("TODO")] // Config, - #[error( - "Could not achieve the \"{step}\" step. Command `{cmd}` resulted in an exited with: {source}" - )] + #[error("Could not achieve the \"{step}\" step. Command `{cmd}` exited with: {source}")] Execution { source: io::Error, step: UpdateSteps,