Skip to content

Commit 121bead

Browse files
committed
Fix run.js depending on the wrong local build target
1 parent 4628e1a commit 121bead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Gulpfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ gulp.task("LKG", "Makes a new LKG out of the built js files", [], () => {
647647

648648
// Task to build the tests infrastructure using the built compiler
649649
const run = path.join(builtLocalDirectory, "run.js");
650-
gulp.task(run, false, [builtLocalCompiler], () => {
650+
gulp.task(run, false, [servicesFile], () => {
651651
const settings: tsc.Settings = getCompilerSettings({
652652
outFile: run
653653
}, /*useBuiltCompiler*/ true);

0 commit comments

Comments
 (0)