-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run jake in interactive mode so output isn't lost. #2048
Conversation
Hi @jbondc, I'm your friendly neighborhood Microsoft Pull Request Bot (You can call me MSBOT). Thanks for your contribution! TTYL, MSBOT; |
@@ -476,6 +469,8 @@ desc("Builds the test infrastructure using the built compiler"); | |||
task("tests", ["local", run].concat(libraryTargets)); | |||
|
|||
function exec(cmd, completeHandler) { | |||
|
|||
return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't seem right, accidentally committed test code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this return for? Should we just eliminate this function if we don't need it anymore?
What effect does this have? |
Oops the 'return' was accidental. I'll add 'interactive' to exec() as well. |
Ahh, looks like it uncovered two bugs :) (a) Third argument: syntacticClassifierAbsent: boolean ? |
@DanielRosenwasser is looking into syntacticClassifierAbsent |
We've decided that this parameter should no longer be optional. #2051. |
var ex = jake.createExec([cmd]); | ||
ex.addListener("cmdEnd", function() { | ||
|
||
exec(cmd, function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indent back a a level (i.e. this should only be 4 spaces from the beginning-of-line)
Try pulling in recent changes and update the PR. |
Fix jake perftsc
Reopened in another pull request, no idea why build is failing. |
No description provided.