diff --git a/extension/src/dependency-installer/installers/flow-cli-installer.ts b/extension/src/dependency-installer/installers/flow-cli-installer.ts index 17375089..81dee013 100644 --- a/extension/src/dependency-installer/installers/flow-cli-installer.ts +++ b/extension/src/dependency-installer/installers/flow-cli-installer.ts @@ -129,7 +129,7 @@ export class InstallFlowCLI extends Installer { // Check if flow version is valid to verify install this.#context.cliProvider.refresh() const installedVersions = await this.#context.cliProvider.getBinaryVersions().catch((e) => { - window.showErrorMessage('Failed to check CLI version: ' + e.message) + void window.showErrorMessage(`Failed to check CLI version: ${String(e.message)}`) return [] }) const version = installedVersions.find(y => y.command === KNOWN_FLOW_COMMANDS.DEFAULT)?.version