diff --git a/src/commands/config/update.rs b/src/commands/config/update.rs
index 2da0d7d8c..9b5696eb7 100644
--- a/src/commands/config/update.rs
+++ b/src/commands/config/update.rs
@@ -40,7 +40,7 @@ pub fn handle_config_update(yes: bool, print: bool) -> anyhow::Result<()> {
if let Some(candidate) = check_user_config()? {
candidates.push(candidate);
}
- if let Some(candidate) = check_project_config()? {
+ if let Some(candidate) = check_project_config(print)? {
candidates.push(candidate);
}
@@ -177,7 +177,9 @@ fn check_user_config() -> anyhow::Result