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 = (
8585} ;
8686
8787let getBinaryDirPath = ( projectRootPath : p . DocumentUri ) =>
88- extensionConfiguration . binaryPath === null
88+ extensionConfiguration . binaryPath == null
8989 ? findBinaryDirPathFromProjectRoot ( projectRootPath )
9090 : extensionConfiguration . binaryPath ;
9191
@@ -980,7 +980,7 @@ function onMessage(msg: p.Message) {
980980 if ( initialConfiguration != null ) {
981981 extensionConfiguration = initialConfiguration ;
982982 if (
983- extensionConfiguration . binaryPath !== null &&
983+ extensionConfiguration . binaryPath != null &&
984984 extensionConfiguration . binaryPath [ 0 ] === "~"
985985 ) {
986986 // What should happen if the path contains the home directory symbol?
You can’t perform that action at this time.
0 commit comments