Skip to content

Commit f68fde1

Browse files
author
jbondc
committed
Travis test microsoft#3
1 parent f4d098a commit f68fde1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Jakefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ function compileFile(outFile, sources, prereqs, prefixes, useBuiltCompiler, noOu
213213

214214
if (outDir) {
215215
options += " --outDir " + outDir;
216-
jake.mkdirP(outDir);
217216
}
218217

219218
if (!noOutFile) {
@@ -327,7 +326,7 @@ var nodeDefinitionsFile = path.join(builtLocalDirectory, "typescript.d.ts");
327326
var standaloneDefinitionsFile = path.join(builtLocalDirectory, "typescriptServices.d.ts");
328327
var internalNodeDefinitionsFile = path.join(builtLocalDirectory, "typescript_internal.d.ts");
329328
var internalStandaloneDefinitionsFile = path.join(builtLocalDirectory, "typescriptServices_internal.d.ts");
330-
var tempDirPath = path.join(builtLocalDirectory, "temptempdir");
329+
var tempDirPath = path.join(__dirname, builtLocalDirectory, "temptempdir");
331330
compileFile(nodeDefinitionsFile, servicesSources,[builtLocalDirectory, copyright].concat(servicesSources),
332331
/*prefixes*/ undefined,
333332
/*useBuiltCompiler*/ true,
@@ -487,7 +486,7 @@ function cleanTestDirs() {
487486
}
488487

489488
jake.mkdirP(localRwcBaseline);
490-
jake.mkdirP(localTest262Baseline);
489+
jake.mkdirP(localTest262Baseline);
491490
jake.mkdirP(localBaseline);
492491
}
493492

0 commit comments

Comments
 (0)