Replace '/' concat with path.join(...)

This commit is contained in:
BoykoAlex
2017-12-12 20:37:47 -05:00
parent 2e912dfb19
commit 508d181cf4

View File

@@ -83,7 +83,7 @@ class BootJavaLanguageClient extends JavaProcessLanguageClient {
}
filterChangeWatchedFiles(filePath) {
return filePath.endsWith('.gradle') || filePath.endsWith('/pom.xml');
return filePath.endsWith('.gradle') || filePath.endsWith(path.join('', 'pom.xml'));
}
}