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/01/14 11:32:51 UTC

git commit: CB-4533 return exit code 2

Updated Branches:
  refs/heads/master 37e4565a9 -> 07594b351


CB-4533 return exit code 2


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

Branch: refs/heads/master
Commit: 07594b3512f6e8e61e29f89598f9c95bb57daf16
Parents: 37e4565
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Jan 14 02:30:54 2014 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Jan 14 02:30:54 2014 -0800

----------------------------------------------------------------------
 wp7/bin/check_reqs.js | 2 +-
 wp8/bin/check_reqs.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/07594b35/wp7/bin/check_reqs.js
----------------------------------------------------------------------
diff --git a/wp7/bin/check_reqs.js b/wp7/bin/check_reqs.js
index 4e673b1..8d4597c 100644
--- a/wp7/bin/check_reqs.js
+++ b/wp7/bin/check_reqs.js
@@ -70,7 +70,7 @@ else {
     }
     catch(err) {
         Log('Please install the .NET Framework v4.0 (part of the latest windows phone SDK\'s).', true);
-        WScript.Quit(1);
+        WScript.Quit(2);
     }
 }
 

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/07594b35/wp8/bin/check_reqs.js
----------------------------------------------------------------------
diff --git a/wp8/bin/check_reqs.js b/wp8/bin/check_reqs.js
index 1aa8256..fa54707 100644
--- a/wp8/bin/check_reqs.js
+++ b/wp8/bin/check_reqs.js
@@ -70,7 +70,7 @@ else {
     }
     catch(err) {
         Log('Please install the .NET Framework v4.0 (part of the latest windows phone SDK\'s).', true);
-        WScript.Quit(1);
+        WScript.Quit(2);
     }
 }