We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5bf7b1 commit d4c047bCopy full SHA for d4c047b
1 file changed
src/managers/builtin/helpers.ts
@@ -44,6 +44,9 @@ export async function shouldUseUv(log?: LogOutputChannel, envPath?: string): Pro
44
if (envPath) {
45
// always use uv if the given environment is stored as a uv env
46
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)}`);
50
if (uvEnvs.includes(envPath)) {
51
return await isUvInstalled(log);
52
}
0 commit comments