Skip to content

Commit 284c357

Browse files
author
jbondc
committed
Run jake in interactive mode so output isn't lost.
1 parent 9f7c252 commit 284c357

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

Jakefile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -235,14 +235,7 @@ function compileFile(outFile, sources, prereqs, prefixes, useBuiltCompiler, noOu
235235
cmd = cmd + sources.join(" ");
236236
console.log(cmd + "\n");
237237

238-
var ex = jake.createExec([cmd]);
239-
// Add listeners for output and error
240-
ex.addListener("stdout", function(output) {
241-
process.stdout.write(output);
242-
});
243-
ex.addListener("stderr", function(error) {
244-
process.stderr.write(error);
245-
});
238+
var ex = jake.createExec([cmd], {interactive: true});
246239
ex.addListener("cmdEnd", function() {
247240
if (!useDebugMode && prefixes && fs.existsSync(outFile)) {
248241
for (var i in prefixes) {
@@ -476,6 +469,8 @@ desc("Builds the test infrastructure using the built compiler");
476469
task("tests", ["local", run].concat(libraryTargets));
477470

478471
function exec(cmd, completeHandler) {
472+
473+
return;
479474
var ex = jake.createExec([cmd], {windowsVerbatimArguments: true});
480475
// Add listeners for output and error
481476
ex.addListener("stdout", function(output) {

0 commit comments

Comments
 (0)