File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ namespace ts.server {
29
29
process . env . USERPROFILE ||
30
30
( process . env . HOMEDRIVE && process . env . HOMEPATH && normalizeSlashes ( process . env . HOMEDRIVE + process . env . HOMEPATH ) ) ||
31
31
os . tmpdir ( ) ;
32
- return combinePaths ( combinePaths ( normalizeSlashes ( basePath ) , "Microsoft/TypeScript" ) , versionMajorMinor ) ;
32
+ return combinePaths ( combinePaths ( normalizeSlashes ( basePath ) , "Microsoft/TypeScript" ) , version ) ;
33
33
}
34
34
case "openbsd" :
35
35
case "freebsd" :
36
36
case "darwin" :
37
37
case "linux" :
38
38
case "android" : {
39
39
const cacheLocation = getNonWindowsCacheLocation ( process . platform === "darwin" ) ;
40
- return combinePaths ( combinePaths ( cacheLocation , "typescript" ) , versionMajorMinor ) ;
40
+ return combinePaths ( combinePaths ( cacheLocation , "typescript" ) , version ) ;
41
41
}
42
42
default :
43
43
return Debug . fail ( `unsupported platform '${ process . platform } '` ) ;
You can’t perform that action at this time.
0 commit comments