From 98f96507c7db20b40b558e5a1f307f8ff012aa89 Mon Sep 17 00:00:00 2001 From: Ondrej Dockal Date: Tue, 19 Sep 2023 15:12:57 +0200 Subject: [PATCH] Start Windows CRC executable path with upper case drive-letter Signed-off-by: Ondrej Dockal --- src/crc-cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crc-cli.ts b/src/crc-cli.ts index a67c642b..7f9cc90b 100644 --- a/src/crc-cli.ts +++ b/src/crc-cli.ts @@ -23,7 +23,7 @@ import type { Logger } from '@podman-desktop/api'; import type { Preset } from './types'; const macosExtraPath = '/usr/local/bin:/opt/local/bin'; -const crcWindowsInstallPath = 'c:\\Program Files\\Red Hat OpenShift Local'; +const crcWindowsInstallPath = 'C:\\Program Files\\Red Hat OpenShift Local'; export function getInstallationPath(): string { const env = process.env;