You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2014/05/14 01:25:35 UTC

git commit: apply CB-6685 to 3.5.x branch. This closes #33

Repository: cordova-wp8
Updated Branches:
  refs/heads/3.5.x e52017ded -> 59184cbaa
Updated Tags:  refs/tags/3.5.0 [created] 59184cbaa


apply CB-6685 to 3.5.x branch. This closes #33


Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/59184cba
Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/59184cba
Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/59184cba

Branch: refs/heads/3.5.x
Commit: 59184cbaa01680a2d70ae48bc49e7c2a1ff9ccda
Parents: e52017d
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue May 13 16:24:58 2014 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue May 13 16:24:58 2014 -0700

----------------------------------------------------------------------
 wp7/template/cordova/lib/build.js | 1 +
 wp8/template/cordova/lib/build.js | 2 ++
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/59184cba/wp7/template/cordova/lib/build.js
----------------------------------------------------------------------
diff --git a/wp7/template/cordova/lib/build.js b/wp7/template/cordova/lib/build.js
index 1dadbe0..2a89cbf 100644
--- a/wp7/template/cordova/lib/build.js
+++ b/wp7/template/cordova/lib/build.js
@@ -70,6 +70,7 @@ function exec_verbose(command) {
         Log(line, true);
         WScript.Quit(2);
     }
+    return oShell.ExitCode;
 }
 
 // escapes a path so that it can be passed to shell command. 

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/59184cba/wp8/template/cordova/lib/build.js
----------------------------------------------------------------------
diff --git a/wp8/template/cordova/lib/build.js b/wp8/template/cordova/lib/build.js
index c5b3b69..a46329b 100644
--- a/wp8/template/cordova/lib/build.js
+++ b/wp8/template/cordova/lib/build.js
@@ -70,6 +70,8 @@ function exec_verbose(command) {
         Log(line, true);
         WScript.Quit(2);
     }
+
+    return oShell.ExitCode;
 }
 
 // escapes a path so that it can be passed to shell command.