Merge branch 'find-cli-msg' into 'master'

Don't display message on make find

See merge request redox-os/redox!1730
This commit is contained in:
Jeremy Soller 2025-12-03 06:40:33 -07:00
commit ada05a5b44

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 {