From 15c83e5f4e5f1deb575710106a98e90f9c6b045d Mon Sep 17 00:00:00 2001 From: Ritwick Dey Date: Fri, 9 Feb 2018 00:13:51 +0530 Subject: [PATCH] lint --- src/Helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Helper.ts b/src/Helper.ts index f2e5cb47..c9b92e49 100644 --- a/src/Helper.ts +++ b/src/Helper.ts @@ -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) => { - if (mountRule.length == 2 && mountRule[1]) { + if (mountRule.length === 2 && mountRule[1]) { mountRule[1] = path.resolve(workspacePath, mountRule[1]); } });