Fix run.js depending on the wrong local build target

This commit is contained in:
Wesley Wigham 2016-06-14 16:56:47 -07:00
parent 4628e1a809
commit 121bead8d1
No known key found for this signature in database
GPG Key ID: D59F87F60C5400C9

View File

@ -647,7 +647,7 @@ gulp.task("LKG", "Makes a new LKG out of the built js files", [], () => {
// Task to build the tests infrastructure using the built compiler
const run = path.join(builtLocalDirectory, "run.js");
gulp.task(run, false, [builtLocalCompiler], () => {
gulp.task(run, false, [servicesFile], () => {
const settings: tsc.Settings = getCompilerSettings({
outFile: run
}, /*useBuiltCompiler*/ true);