Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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].

Expand Down
4 changes: 2 additions & 2 deletions cli/src/main/java/com/devonfw/tools/ide/tool/sonar/Sonar.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
}
Expand Down
Loading