Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Nov 10, 2023
1 parent 951842c commit 821db68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/subcommand/repair.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl CommandExecute for Repair {

if let Err(err) = reconfigure.try_execute().await {
println!("{:#?}", err);
return Ok(ExitCode::FAILURE)
return Ok(ExitCode::FAILURE);
}

#[cfg(target_os = "macos")]
Expand All @@ -50,7 +50,7 @@ impl CommandExecute for Repair {

if let Err(err) = reconfigure.try_execute().await {
println!("{:#?}", err);
return Ok(ExitCode::FAILURE)
return Ok(ExitCode::FAILURE);
}
}

Expand Down

0 comments on commit 821db68

Please sign in to comment.