Skip to content

Commit 32be8db

Browse files
committed
force install even if version is newer
1 parent cff768c commit 32be8db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

installation_and_upgrade/ibex_install_utils/tasks/system_tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ def check_java_installation(self) -> None:
9797
admin_commands.add_command(
9898
f'msiexec /i "{installer}"',
9999
"ADDLOCAL=FeatureMain,FeatureEnvironment,FeatureJarFileRunWith,FeatureJavaHome "
100-
f'INSTALLDIR="{os.path.join(JAVA_INSTALL_BASE_PATH, version)}" /quiet',
100+
f'INSTALLDIR="{os.path.join(JAVA_INSTALL_BASE_PATH, version)}" REINSTALL=ALL '
101+
"REINSTALLMODE=amus /quiet",
101102
expected_return_val=None,
102103
)
103104
admin_commands.run_all()

0 commit comments

Comments
 (0)