Skip to content

Commit

Permalink
Fix typo 'mounpoint'
Browse files Browse the repository at this point in the history
Signed-off-by: Alvaro Sanchez-Leon <[email protected]>
  • Loading branch information
alvsan09 authored and vince-fugnitto committed Jan 8, 2021
1 parent c79e9d4 commit 335273b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/node/env-variables/env-variables-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ export class EnvVariablesServerImpl implements EnvVariablesServer {
const uris: string[] = [];
const drives = await drivelist.list();
for (const drive of drives) {
for (const mounpoint of drive.mountpoints) {
if (this.filterHiddenPartitions(mounpoint.path)) {
uris.push(FileUri.create(mounpoint.path).toString());
for (const mountpoint of drive.mountpoints) {
if (this.filterHiddenPartitions(mountpoint.path)) {
uris.push(FileUri.create(mountpoint.path).toString());
}
}
}
Expand Down

0 comments on commit 335273b

Please sign in to comment.