Skip to content

Commit

Permalink
fix: 🐛 Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Dec 23, 2022
1 parent 25cd4f2 commit c9306bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async fn install(args: InstallOpts) -> Result<()> {
let tx = tx.clone();
tokio::spawn(async move {
let res = app.install().await;
tx.send(res).await;
tx.send(res).await.unwrap();
});
}

Expand Down

0 comments on commit c9306bd

Please sign in to comment.