We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1351f1f commit 6eb1f26Copy full SHA for 6eb1f26
1 file changed
src/client/providers/setInterpreterProvider.ts
@@ -71,7 +71,7 @@ function getSearchPaths(): Promise<string[]> {
71
let paths = ['/usr/local/bin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/sbin', '/Envs', '/.virtualenvs', '/.pyenv',
72
'/.pyenv/versions'];
73
paths.forEach(p => {
74
- paths.concat(untildify('~' + p));
+ paths.push(untildify('~' + p));
75
});
76
// Add support for paths such as /Users/xxx/anaconda/bin
77
if (process.env['HOME']) {
0 commit comments