aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/reinstall.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/reinstall.rs')
-rw-r--r--crates/mozart/src/commands/reinstall.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/mozart/src/commands/reinstall.rs b/crates/mozart/src/commands/reinstall.rs
index d064136..91c2aaf 100644
--- a/crates/mozart/src/commands/reinstall.rs
+++ b/crates/mozart/src/commands/reinstall.rs
@@ -65,7 +65,7 @@ pub struct ReinstallArgs {
// ─── Main entry point ─────────────────────────────────────────────────────────
-pub fn execute(
+pub async fn execute(
args: &ReinstallArgs,
cli: &super::Cli,
console: &mozart_core::console::Console,
@@ -215,7 +215,8 @@ pub fn execute(
&locked.name,
Some(&mut progress),
Some(&files_cache),
- )?;
+ )
+ .await?;
progress.finish();
reinstalled_count += 1;