From 9d4e9cab5b0004d21b65ae50347298f279c2b7b6 Mon Sep 17 00:00:00 2001 From: Daniel Hengeveld Date: Sat, 9 Jan 2016 12:22:54 -0800 Subject: [PATCH] Make linter happy --- src/git-repository-async.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git-repository-async.js b/src/git-repository-async.js index a0e85a01d..725b7b441 100644 --- a/src/git-repository-async.js +++ b/src/git-repository-async.js @@ -165,7 +165,7 @@ export default class GitRepositoryAsync { const workingDirectory = repo.workdir() let openedWorkingDirectory = null const opened = this.openedPath.replace(/\/\.git$/, '') - if (path.relative(opened, workingDirectory) != '') { + if (path.relative(opened, workingDirectory) !== '') { openedWorkingDirectory = opened } return this.relativize(_path, workingDirectory, openedWorkingDirectory)