From 71015ce023c530d35981c1587d0b34080acc4f19 Mon Sep 17 00:00:00 2001 From: Ben King <9087625+benfdking@users.noreply.github.com> Date: Mon, 16 Jun 2025 12:51:52 +0200 Subject: [PATCH] fix: vscode tcloud fix order of checks --- vscode/extension/src/utilities/sqlmesh/sqlmesh.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vscode/extension/src/utilities/sqlmesh/sqlmesh.ts b/vscode/extension/src/utilities/sqlmesh/sqlmesh.ts index be60f3be2a..f656937bab 100644 --- a/vscode/extension/src/utilities/sqlmesh/sqlmesh.ts +++ b/vscode/extension/src/utilities/sqlmesh/sqlmesh.ts @@ -390,12 +390,6 @@ export const sqlmeshLspExec = async (): Promise< type: 'not_signed_in', }) } - const exists = await doesExecutableExist(sqlmeshLSP) - if (!exists) { - return err({ - type: 'sqlmesh_lsp_not_found', - }) - } const ensured = await ensureSqlmeshEnterpriseInstalled() if (isErr(ensured)) { return ensured