diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 4e54f3ed6f..3fd00ea11c 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -21,6 +21,7 @@ Release with new features and bugfixes: * https://github.com/devonfw/IDEasy/issues/797[#797]: Use system unzip on macOS to preserve symlinks in ZIP extraction * https://github.com/devonfw/IDEasy/issues/1723[#1723]: Add commandlet for GitHub Copilot CLI * https://github.com/devonfw/IDEasy/issues/1685[#1685]: Add Nest CLI to IDEasy commandlets +* https://github.com/devonfw/IDEasy/issues/800[#800]: Fix infinite recursion in Sonar start/stop on macOS The full list of changes for this release can be found in https://github.com/devonfw/IDEasy/milestone/44?closed=1[milestone 2026.05.001]. diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java b/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java index dfcb5b7520..d75ec4b9d4 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java @@ -71,11 +71,11 @@ protected void doRun() { case START: printSonarWebPort(); this.arguments.setValueAsString("start", this.context); - super.run(); + super.doRun(); break; case STOP: this.arguments.setValueAsString("stop", this.context); - super.run(); + super.doRun(); break; default: }