Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#315: Fix frozen process after global tool installation with msiexec #684

Merged
merged 12 commits into from
Nov 11, 2024
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This file documents all notable changes to https://github.com/devonfw/IDEasy[IDEasy].

== 2024.10.001

Release with new features and bugfixes:

* https://github.com/devonfw/IDEasy/issues/315[#315]: Fix frozen process after MSI installation

== 2024.09.002

Release with new features and bugfixes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ private String addExecutable(String exec, List<String> args) {
}
if ("msi".equalsIgnoreCase(fileExtension)) {
args.add(0, "/i");
args.add(0, "/qb");
alfeilex marked this conversation as resolved.
Show resolved Hide resolved
args.add(0, "msiexec");
}
args.add(exec);
Expand Down
Loading