From a0ddd5e1b7e411a12ce8cf5797e5bfe76a811c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Fri, 27 Sep 2024 00:31:14 +0200 Subject: [PATCH] #627: fix processable output suppression by logging settings update availabe on interaction --- .../java/com/devonfw/tools/ide/context/AbstractIdeContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java b/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java index a7bbd5cab..a1223a27f 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java +++ b/cli/src/main/java/com/devonfw/tools/ide/context/AbstractIdeContext.java @@ -854,7 +854,7 @@ private ValidationResult applyAndRun(CliArguments arguments, Commandlet cmd) { if (this.settingsPath != null) { if (getGitContext().isRepositoryUpdateAvailable(this.settingsPath) || (getGitContext().fetchIfNeeded(this.settingsPath) && getGitContext().isRepositoryUpdateAvailable(this.settingsPath))) { - info("Updates are available for the settings repository. If you want to pull the latest changes, call ide update."); + interaction("Updates are available for the settings repository. If you want to pull the latest changes, call ide update."); } } cmd.run();