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 {
33 // If changing the text in this section, be sure to test `configureNightly` too.
44 export const versionMajorMinor = "3.4" ;
55 /** The version of the TypeScript compiler release */
6- export const version = `${ versionMajorMinor } .2 ` ;
6+ export const version = `${ versionMajorMinor } .3 ` ;
77}
88
99namespace ts {
Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ namespace ts.server {
2929 process . env . USERPROFILE ||
3030 ( process . env . HOMEDRIVE && process . env . HOMEPATH && normalizeSlashes ( process . env . HOMEDRIVE + process . env . HOMEPATH ) ) ||
3131 os . tmpdir ( ) ;
32- return combinePaths ( combinePaths ( normalizeSlashes ( basePath ) , "Microsoft/TypeScript" ) , versionMajorMinor ) ;
32+ return combinePaths ( combinePaths ( normalizeSlashes ( basePath ) , "Microsoft/TypeScript" ) , version ) ;
3333 }
3434 case "openbsd" :
3535 case "freebsd" :
3636 case "darwin" :
3737 case "linux" :
3838 case "android" : {
3939 const cacheLocation = getNonWindowsCacheLocation ( process . platform === "darwin" ) ;
40- return combinePaths ( combinePaths ( cacheLocation , "typescript" ) , versionMajorMinor ) ;
40+ return combinePaths ( combinePaths ( cacheLocation , "typescript" ) , version ) ;
4141 }
4242 default :
4343 return Debug . fail ( `unsupported platform '${ process . platform } '` ) ;
You can’t perform that action at this time.
0 commit comments