From 5d5ea4b3063578cdd60e9bef00cac44c890ca3d6 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Wed, 3 Dec 2025 18:11:29 +0700 Subject: [PATCH] Don't display message on make find --- src/bin/repo.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/repo.rs b/src/bin/repo.rs index cd09b607..adaf0682 100644 --- a/src/bin/repo.rs +++ b/src/bin/repo.rs @@ -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 {