Skip to content

Commit d4c047b

Browse files
committed
this
1 parent f5bf7b1 commit d4c047b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/managers/builtin/helpers.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ export async function shouldUseUv(log?: LogOutputChannel, envPath?: string): Pro
4444
if (envPath) {
4545
// always use uv if the given environment is stored as a uv env
4646
const uvEnvs = await getUvEnvironments();
47+
console.log(`UV Environments: ${uvEnvs.join(', ')}`);
48+
console.log(`Checking if envPath ${envPath} is in UV environments`);
49+
console.log(`isUVinstalled function: ${isUvInstalled(log)}`);
4750
if (uvEnvs.includes(envPath)) {
4851
return await isUvInstalled(log);
4952
}

0 commit comments

Comments
 (0)