Repository: cordova-wp8 Updated Branches: refs/heads/master 91811549d -> 2a0bc587c
CB-7060 WP8. Fix large project build performance issue Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/2a0bc587 Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/2a0bc587 Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/2a0bc587 Branch: refs/heads/master Commit: 2a0bc587c13a3126c8076d8c6e7aa1298d899407 Parents: 9181154 Author: sgrebnov <[email protected]> Authored: Wed Jul 2 11:00:53 2014 +0400 Committer: sgrebnov <[email protected]> Committed: Wed Jul 9 15:55:36 2014 +0400 ---------------------------------------------------------------------- wp8/template/cordova/lib/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/2a0bc587/wp8/template/cordova/lib/build.js ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/build.js b/wp8/template/cordova/lib/build.js index 472f99e..9644988 100644 --- a/wp8/template/cordova/lib/build.js +++ b/wp8/template/cordova/lib/build.js @@ -70,7 +70,7 @@ function exec_verbose(command) { //Wait a little bit so we're not super looping WScript.sleep(100); //Print any stdout output from the script - if (!oShell.StdOut.AtEndOfStream) { + while (!oShell.StdOut.AtEndOfStream) { var line = oShell.StdOut.ReadLine(); Log(line); }
