Skip to content

Commit 80ae5e9

Browse files
committed
chore: run crc installer with full user experience
previously the installer was executed as a hidden process and did not show any option to reboot the computer even when it was required. Then the flow keep processing and the setup ended up on an error due to not being able to stop it or to reboot the computer. Also this change makes the openshift local installer matches how other installers are executed showing full experience to the user (i.e. podman installer) Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
1 parent ef6facc commit 80ae5e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install/win-install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class WinInstall extends BaseInstaller {
4141
msiPath = await this.extractMsiFromZip(setupPath);
4242
progress.report({ increment: 10 });
4343

44-
const runResult = await runCliCommand('msiexec.exe', ['/i', msiPath, '/qr', '/norestart']);
44+
const runResult = await runCliCommand('msiexec.exe', ['/i', msiPath, '/qf']);
4545
if (runResult.exitCode !== 0) {
4646
// installed successfully, but reboot required
4747
if (runResult.exitCode === 3010) {

0 commit comments

Comments
 (0)