Don't display message on make find

This commit is contained in:
Wildan M 2025-12-03 18:11:29 +07:00
parent c1f13049dc
commit 5d5ea4b306
No known key found for this signature in database
GPG Key ID: 01AC53185C679C79

View File

@ -207,7 +207,9 @@ fn main_inner() -> anyhow::Result<()> {
for recipe in &recipe_names {
match repo_inner(&config, &command, recipe) {
Ok(_) => {
print_success(&command, Some(&recipe.name));
if !command.is_informational() {
print_success(&command, Some(&recipe.name));
}
}
Err(e) => {
if config.cook.nonstop && verbose {