fix: remove printer message from completions command

this way the output command can be used to source completion
This commit is contained in:
prma
2023-12-26 16:22:26 +03:30
committed by Clément DOUIN
parent 89fbb8a9db
commit 38c8a67ddd
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ impl HimalayaCommand {
cmd.execute(printer, &config).await
}
Self::Manual(cmd) => cmd.execute(printer).await,
Self::Completion(cmd) => cmd.execute(printer).await,
Self::Completion(cmd) => cmd.execute().await,
}
}
}