You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sg...@apache.org on 2014/07/09 13:56:15 UTC

git commit: CB-7060 WP8. Fix large project build performance issue

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 <v-...@microsoft.com>
Authored: Wed Jul 2 11:00:53 2014 +0400
Committer: sgrebnov <v-...@microsoft.com>
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);
         }