mirror of
https://github.com/serokell/deploy-rs.git
synced 2024-11-26 08:09:53 +03:00
Tweak error messages a little
This commit is contained in:
parent
5ba58e0328
commit
1cbf7ef0ed
@ -403,7 +403,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
.await
|
||||
{
|
||||
Ok(()) => (),
|
||||
Err(err) => good_panic!("An error: {}", err),
|
||||
Err(err) => good_panic!("{}", err),
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
@ -235,9 +235,9 @@ async fn test_flake_support() -> Result<bool, std::io::Error> {
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
enum CheckDeploymentError {
|
||||
#[error("Failed to execute nix eval command: {0}")]
|
||||
#[error("Failed to execute Nix checking command: {0}")]
|
||||
NixCheckError(#[from] std::io::Error),
|
||||
#[error("Evaluation resulted in a bad exit code: {0:?}")]
|
||||
#[error("Nix checking command resulted in a bad exit code: {0:?}")]
|
||||
NixCheckExitError(Option<i32>),
|
||||
}
|
||||
|
||||
@ -540,7 +540,7 @@ async fn run() -> Result<(), RunError> {
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
match run().await {
|
||||
Ok(()) => (),
|
||||
Err(err) => good_panic!("An error: {}", err),
|
||||
Err(err) => good_panic!("{}", err),
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
Loading…
Reference in New Issue
Block a user