fix: 🐛 Fix clippy

This commit is contained in:
Sergio Gasquez 2022-12-23 10:32:08 +00:00
parent 25cd4f2c8f
commit c9306bdaeb

View File

@ -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();
});
}