Skip to content

Commit

Permalink
chore: ask for preset on initialize crc
Browse files Browse the repository at this point in the history
previously the installation flow for crc will include the ask for preset popup, which would end up setting the preset on crc config, as now the installation process typically will end up on a reboot we need to ask / recommend the preset when the initialization button is shown after reboot

Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
  • Loading branch information
adrianriobo committed Apr 10, 2024
1 parent 80ae5e9 commit 1c3864a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ async function initializeCrc(
telemetryLogger: extensionApi.TelemetryLogger,
logger: extensionApi.Logger,
): Promise<boolean> {
const hasSetupFinished = await setUpCrc(logger, false);
const hasSetupFinished = await setUpCrc(logger, true);
if (hasSetupFinished) {
await needSetup();
await connectToCrc();
Expand Down

0 comments on commit 1c3864a

Please sign in to comment.