Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Apr 15, 2024
1 parent f238460 commit 59e57a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 59e57a6

Please sign in to comment.