Skip to content

Commit 6eb1f26

Browse files
committed
fix #569
1 parent 1351f1f commit 6eb1f26

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/providers/setInterpreterProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function getSearchPaths(): Promise<string[]> {
7171
let paths = ['/usr/local/bin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/sbin', '/Envs', '/.virtualenvs', '/.pyenv',
7272
'/.pyenv/versions'];
7373
paths.forEach(p => {
74-
paths.concat(untildify('~' + p));
74+
paths.push(untildify('~' + p));
7575
});
7676
// Add support for paths such as /Users/xxx/anaconda/bin
7777
if (process.env['HOME']) {

0 commit comments

Comments
 (0)