File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ let findBinaryDirPathFromProjectRoot = (
85
85
} ;
86
86
87
87
let getBinaryDirPath = ( projectRootPath : p . DocumentUri ) =>
88
- extensionConfiguration . binaryPath === null
88
+ extensionConfiguration . binaryPath == null
89
89
? findBinaryDirPathFromProjectRoot ( projectRootPath )
90
90
: extensionConfiguration . binaryPath ;
91
91
@@ -980,7 +980,7 @@ function onMessage(msg: p.Message) {
980
980
if ( initialConfiguration != null ) {
981
981
extensionConfiguration = initialConfiguration ;
982
982
if (
983
- extensionConfiguration . binaryPath !== null &&
983
+ extensionConfiguration . binaryPath != null &&
984
984
extensionConfiguration . binaryPath [ 0 ] === "~"
985
985
) {
986
986
// What should happen if the path contains the home directory symbol?
You can’t perform that action at this time.
0 commit comments