We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a7d22 commit 5a0f7eaCopy full SHA for 5a0f7ea
1 file changed
internal/provider/python.go
@@ -160,6 +160,7 @@ func (p *PythonProvider) GetBinPaths(tool string, installPath string, version st
160
venvBin := filepath.Join(installPath, "venv", "bin")
161
if runtime.GOOS == "windows" {
162
venvBin = filepath.Join(installPath, "venv", "Scripts")
163
+ return []string{binDir, venvBin, installPath}, nil
164
}
165
return []string{binDir, venvBin}, nil
166
0 commit comments