Skip to content

Commit c345ffa

Browse files
committed
8288961: jpackage: test MSI installation fix
Backport-of: c67149be4bd4922f9e6a55eb17deca684941d535
1 parent 6bdd611 commit c345ffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jdk/tools/jpackage/helpers/jdk/jpackage/test/WindowsHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static PackageHandlers createMsiPackageHandlers() {
9292
BiConsumer<JPackageCommand, Boolean> installMsi = (cmd, install) -> {
9393
cmd.verifyIsOfType(PackageType.WIN_MSI);
9494
runMsiexecWithRetries(Executor.of("msiexec", "/qn", "/norestart",
95-
install ? "/i" : "/x").addArgument(cmd.outputBundle()));
95+
install ? "/i" : "/x").addArgument(cmd.outputBundle().normalize()));
9696
};
9797

9898
PackageHandlers msi = new PackageHandlers();

0 commit comments

Comments
 (0)