Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Feb 8, 2018
1 parent ade5965 commit 15c83e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class Helper {
// but in vscode `process.cwd()` is the vscode extensions path.
// The correct path should be resolve by workspacePath.
mount.forEach((mountRule: Array<any>) => {
if (mountRule.length == 2 && mountRule[1]) {
if (mountRule.length === 2 && mountRule[1]) {
mountRule[1] = path.resolve(workspacePath, mountRule[1]);
}
});
Expand Down

0 comments on commit 15c83e5

Please sign in to comment.