diff --git a/src/contributes/commandsBase.ts b/src/contributes/commandsBase.ts index b09f371..330fc38 100644 --- a/src/contributes/commandsBase.ts +++ b/src/contributes/commandsBase.ts @@ -10,14 +10,13 @@ export function checkDevChatDependency(pythonCommand: string): boolean { if (binPath) { updateEnvironmentPath(binPath); - - // Check if DevChat is installed - runCommand('devchat --help'); - return true; } else { - logger.channel()?.error(`Failed to obtain the pipx environment path. Attempting to install pipx.`); - return false; + logger.channel()?.info(`Failed to obtain the pipx environment path.`); } + + // Check if DevChat is installed + runCommand('devchat --help'); + return true; } catch (error) { // DevChat dependency check failed // log out detail error message