File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ namespace ts {
3
3
// If changing the text in this section, be sure to test `configureNightly` too.
4
4
export const versionMajorMinor = "3.4" ;
5
5
/** The version of the TypeScript compiler release */
6
- export const version = `${ versionMajorMinor } .2 ` ;
6
+ export const version = `${ versionMajorMinor } .3 ` ;
7
7
}
8
8
9
9
namespace ts {
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