Skip to content

Commit 5a0f7ea

Browse files
committed
fix(provider): append installPath to python GetBinPaths on Windows for dll resolution
1 parent 53a7d22 commit 5a0f7ea

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

internal/provider/python.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ func (p *PythonProvider) GetBinPaths(tool string, installPath string, version st
160160
venvBin := filepath.Join(installPath, "venv", "bin")
161161
if runtime.GOOS == "windows" {
162162
venvBin = filepath.Join(installPath, "venv", "Scripts")
163+
return []string{binDir, venvBin, installPath}, nil
163164
}
164165
return []string{binDir, venvBin}, nil
165166
}

0 commit comments

Comments
 (0)