Skip to content

Commit c9f46e1

Browse files
odockalanjannath
authored andcommitted
Start Windows CRC executable path with upper case drive-letter
- Due to a strict check of a `hidden_daemon.ps1` file content during `crc setup` on `crc` side there is an error when initializing the CRC in podman desktop. This change should align the default windows `crc` executable location with this strict check - fixes #175 Signed-off-by: Ondrej Dockal <[email protected]>
1 parent 571f6db commit c9f46e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crc-cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import type { Logger } from '@podman-desktop/api';
2323
import type { Preset } from './types';
2424

2525
const macosExtraPath = '/usr/local/bin:/opt/local/bin';
26-
const crcWindowsInstallPath = 'c:\\Program Files\\Red Hat OpenShift Local';
26+
const crcWindowsInstallPath = 'C:\\Program Files\\Red Hat OpenShift Local';
2727

2828
export function getInstallationPath(): string {
2929
const env = process.env;

0 commit comments

Comments
 (0)